3

我想获取在其祖先之间具有特定“id”的祖先的所有类别项目。

以下是GET来自的返回的类别之一的 JSON /categories

{
        "id": "4627f3b0-fe52-4cc6-b03e-3fd72e701342",
        "version": 1,
        "lastMessageSequenceNumber": 1,
        "createdAt": "2019-02-18T13:48:51.677Z",
        "lastModifiedAt": "2019-02-18T13:48:51.677Z",
        "lastModifiedBy": {
            "clientId": "_anonymous"
        },
        "createdBy": {
            "clientId": "_anonymous"
        },
        "key": "snowboard-gloves",
        "name": {
            "en": "Snowboard Gloves"
        },
        "slug": {
            "en": "snowboard-gloves"
        },
        "description": {
            "en": "Gloves specifically designed for snowboarding"
        },
        "ancestors": [
            {
                "typeId": "category",
                "id": "b27086d2-33f2-43c3-aad1-4c01b2b9a886"
            }
        ],
        "parent": {
            "typeId": "category",
            "id": "b27086d2-33f2-43c3-aad1-4c01b2b9a886"
        },
        "orderHint": "0.000016",
        "metaTitle": {
            "en": "Snowboard Gloves"
        },
        "metaDescription": {
            "en": "Gloves specifically designed for snowboarding"
        },
        "assets": []
    }

我想用where子句调用/categoriesAPI,但从文档中我不明白我应该如何编写查询谓词。ancestors[x].id = "b27086d2-33f2-43c3-aad1-4c01b2b9a886"

谁能帮我?

4

1 回答 1

3

查询谓词遵循 json 响应的结构。嵌套字段使用()方括号访问。

试试这个

ancestors(id = "idb27086d2-33f2-43c3-aad1-4c01b2b9a886")
于 2019-02-21T13:19:42.220 回答