如何在内容中按对象数组进行查询



我在 Contentful 中有一个内容类型条目,其中包含如下字段:

"fields": {
                "title": "How It Works",
                "slug": "how-it-works",
                "countries": [
                    {
                        "sys": {
                            "type": "Link",
                            "linkType": "Entry",
                            "id": "3S5dbLRGjS2k8QSWqsKK86"
                        }
                    },
                    {
                        "sys": {
                            "type": "Link",
                            "linkType": "Entry",
                            "id": "wHfipcJS6WUSaKae0uOw8"
                        }
                    }
                ],
                "content": [
                    {
                        "sys": {
                            "type": "Link",
                            "linkType": "Entry",
                            "id": "72R0oUMi3uUGMEa80kkSSA"
                        }
                    }
                ]
            }

我想运行一个查询,该查询仅在包含特定国家/地区时才返回条目。

我玩了这个查询:

https://cdn.contentful.com/spaces/aoeuaoeuao/entries?content_type=contentPage&fields.countries=3S5dbLRGjS2k8QSWqsKK86

但是收到此错误:

The equals operator cannot be used on fields.countries.en-AU because it has type Object.

我正在玩邮递员,但将使用.NET API。

是否可以搜索实体,并筛选包含对象的数组?

仍在学习 API,所以我猜它应该非常简单。

更新:

我查看了Contentful Web CMS提出的请求,因为此功能在那里是可能的。他们使用如下查询参数:

filters.0.key=fields.countries.sys.id&filters.0.val=3S5dbLRGjS2k8QSWqsKK86

但是,这在交付 API 中不起作用,可能只是内部查询格式。

通了。我使用了以下网址:

https://cdn.contentful.com/spaces/aoeuaoeua/entries?content_type=contentPage&fields.countries.sys.id=wHfipcJS6WUSaKae0uOw8

请注意查询参数fields.countries.sys.id

相关内容

  • 没有找到相关文章

最新更新