环回在包含的集合中包含一个外键
Loopback include a foriegn key inside included collection
我有嵌套关系的集合,我需要知道如何使用环回过滤器包含这些集合。这是我的环回过滤器,可进一步了解关系
const filter = {
"order": "createdAt DESC",
"where": {"and": [{"vanId": vId},
{"isUsed": true}]},
"include": {"customData": "condition"}};
现在,如果 customData 与名为 city
的集合有关系,那么我如何在 customData 对象中包含城市集合?我只是不知道语法如何工作
根据环回包含文档 here,我能够像这样编辑我的过滤器
const filter = {
"order": "createdAt DESC", "where": {"and": [{"vanID": vId} ,
{"isUsed": true}]}, "include": {"customData": ["city", "condition"]}
我有嵌套关系的集合,我需要知道如何使用环回过滤器包含这些集合。这是我的环回过滤器,可进一步了解关系
const filter = {
"order": "createdAt DESC",
"where": {"and": [{"vanId": vId},
{"isUsed": true}]},
"include": {"customData": "condition"}};
现在,如果 customData 与名为 city
的集合有关系,那么我如何在 customData 对象中包含城市集合?我只是不知道语法如何工作
根据环回包含文档 here,我能够像这样编辑我的过滤器
const filter = {
"order": "createdAt DESC", "where": {"and": [{"vanID": vId} ,
{"isUsed": true}]}, "include": {"customData": ["city", "condition"]}