【发布时间】:2019-10-23 06:45:03
【问题描述】:
我需要知道如何在 arangoDB 中获取主子关系。 我在下面给出了一个名为 user 的以下文档集合
{
"firstName": "dasdsa",
"lastName": "Deshpande",
"emailAddress": "Abc@GAURAV.CO.IN",
"password": "aA@1234",
"applicationId": [
180031,
180091
],
"isActiveUser": "false",
"isAdminUser": "false",
}
第二个名为应用程序的文档集合
{
"id":"180031",
"applicationName": "firstApp",
"description": "first app description"
}
{
"id":"180091
",
"applicationName": "secondApp",
"description": "first app description"
}
我想根据标记给用户的应用程序 ID 检索应用程序名称。在这种情况下,我想检索 firstApp 和 secondApp。
【问题讨论】:
标签: arangodb