OBJECT
Query
link GraphQL Schema definition
- type Query {
- # Arguments
- # id: [Not documented]
- (: String): Cart
- # get categories by channel id, culture, root and culture
- #
- # Arguments
- # root: category id of root parent, null or omit means all
- # levels: number of levels to traverse in the category tree, null
- # or omit means all
- # includeHidden: Deprecated, this argument does not affect the
- # result
- (: Int, : Int, : Boolean): [Category]!
- # get category by id
- #
- # Arguments
- # id: [Not documented]
- (: Int!): Category
- # get channel by id, null gets default channel
- #
- # Arguments
- # id: [Not documented]
- (: String): Channel
- # get all channels
- : [Channel]!
- : Customer
- # get customer product list by id, null gets default product list
- #
- # Arguments
- # id: [Not documented]
- # shareToken: [Not documented]
- (: Int, : String): CustomerProductList
- : [CustomerProductList]!
- # Fetches customer-unique offers
- : Loyalty
- # Fetches my pages content
- : MyPagesContent
- # fetch order by id
- #
- # Arguments
- # id: [Not documented]
- (: Int!): Order
- # Arguments
- # id: [Not documented]
- (: Int!): Page
- : [Page]!
- # Get information on person by Key(personal id number or phone number)
- #
- # Arguments
- # key: [Not documented]
- (: String!): PersonLookup
- # Arguments
- # articleNumber: [Not documented]
- # id: [Not documented]
- # barcode: [Not documented]
- (: String, : Int, : String): Product
- # Arguments
- # articleNumbers: [Not documented]
- # ids: [Not documented]
- # barcodes: [Not documented]
- (: [String], : [Int], : [String]): [Product]!
- # get product, category or page by path.
- #
- # Arguments
- # path: [Not documented]
- (: String!): Route
- # Arguments
- # term: [Not documented]
- (: String!): SearchResult
- # Arguments
- # term: [Not documented]
- (: String!): SearchAutoCompleteResult
- # Arguments
- # id: [Not documented]
- (: Int): StartPage
- # Arguments
- # id: [Not documented]
- (: Int!): Store
- : [Store]!
- }
link Require by
This element is not required by anyone