我有品牌,模特和车辆来源。我只想通过给定的品牌ID获得所有车辆.. 我'
车辆架构在db source
中有此功能'model': {
'type': 'objectid',
'data_relation': {
'resource': 'vehicle_model',
'field': '_id',
'embeddable': True
},
'required': True
},
并且vehicle_model有这个来源:
'brand': {
'type': 'objectid',
'data_relation': {
'resource': 'vehicle_brand',
'field': '_id',
'embeddable': True
},
'required': True
},
所以,当我尝试按照给定的品牌ID获取所有车辆时,它会返回空白。
http://localhost/vehicle?where=model.brand==5ab63e9c63da12227a2d3e43
有没有办法过滤两层嵌入资源?