我的内容类型DonationType
有一个Charity
的引用,我想执行一个返回具有给定慈善机构的DonationType
的查询。这是否受API支持?以下尝试不起作用:
contentful.getEntries({content_type: 'donationType', 'fields.charity': '6eAaZw2TraOgWWE4IG8Ymy'})
contentful.getEntries({content_type: 'donationType', 'fields.charity.id': '6eAaZw2TraOgWWE4IG8Ymy'})
答案 0 :(得分:1)
你几乎就在那里,问题是id字段在sys属性中,所以它应该是fields.charity.sys.id
。
我希望这会有所帮助。
最佳, 物语