Price Lists

Query

priceList — Returns PriceList

Scopes Required: see_pricelists

Arguments Type Description

id

ID!

The ID of the price list to retrieve

Example Query
query GetPriceList($id: ID!) {
    priceList(id: $id) {
        id,
        name,
        allowHigherPrice,
        allowDiscountingPromotions,
        createdAt
    }
}

# Example variables
{
    "id": "<ID>"
}

Query

priceLists — Returns [PriceList]

Scopes Required: see_pricelists

Example Query
query GetPriceLists {
    priceLists {
        id,
        name,
        allowHigherPrice,
        allowDiscountingPromotions,
        createdAt
    }
}