Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

http://localhost:2001/apix1/ProductType


Code Block
languagejscss
themeEclipseConfluence
titleПример результата
collapsetrue
{
    "value": [
        {
            "$id": 1,
            "@xdata.type": "XData.Default.ProductType",
            "pt_id": 1,
            "pt_title": "Товары",
            "pt_parent_id": null
        },
        {
            "$id": 2,
            "@xdata.type": "XData.Default.ProductType",
            "pt_id": 32,
            "pt_title": "Свет",
            "pt_parent_id": 1
        }
    ]
}

...

pt_parent_id - ид родительского типа товара


Tip

Получить все типы товаров, у которых родительский тип pt_parent_id = 1

http://localhost:2001/apix1/ProductType?$filter=(pt_parent_id eq 1)


Tip

Все корневые типы товаров

http://localhost:2001/apix1/ProductType?$filter=(pt_parent_id eq null)