就像常见的联接关系一样,我希望根据父子关系中的过滤子项过滤我的结果。 我做了这个
{"include":{"relation":"children","scope":{"where":{"and":[{"name":"xxx"}]}}}}
给了我所有的父母,在他们里面,孩子们用这个名字过滤了。
任何线索?感谢
答案 0 :(得分:0)
根据https://stackoverflow.com/a/32933383/344022,还没有正式提供的内容。 @DiogoDoreto有fork of the loopback-connector确实尝试提供它。我没有尝试过,但是如果你要使用它,你会在过滤器中执行以下操作:
"where": {
"children": {
"where": {
"name": "xxx"
}
}
}