OBJECT

Query

link GraphQL Schema definition

  • type Query {
  • # Query a customer's active JWT.
  • # User with right 'VIEW_ANY_TOKEN' can query any customer's tokens.
  • #
  • # Arguments
  • # filter: [Not documented]
  • # pagination: [Not documented]
  • # sort: [Not documented]
  • tokens(
  • filter: TokenFilterList,
  • pagination: PaginationInput,
  • sort: TokenSorting
  • ): [Token!]!
  • # retrieve a JWT for authentication of further requests
  • #
  • # Arguments
  • # username: [Not documented]
  • # password: [Not documented]
  • token(username: String, password: String): String!
  • #
  • #
  • # Arguments
  • # productId: [Not documented]
  • product(productId: ID!): Product!
  • #
  • #
  • # Arguments
  • # filter: [Not documented]
  • # pagination: [Not documented]
  • # sort: [Not documented]
  • products(
  • filter: ProductFilterList,
  • pagination: PaginationInput,
  • sort: ProductSorting
  • ): [Product!]!
  • #
  • #
  • # Arguments
  • # vendorId: [Not documented]
  • vendor(vendorId: ID!): Vendor!
  • #
  • #
  • # Arguments
  • # filter: [Not documented]
  • # sort: [Not documented]
  • vendors(filter: VendorFilterList, sort: VendorSorting): [Vendor!]!
  • #
  • #
  • # Arguments
  • # categoryId: [Not documented]
  • category(categoryId: ID!): Category!
  • #
  • #
  • # Arguments
  • # filter: [Not documented]
  • # sort: [Not documented]
  • categories(filter: CategoryFilterList, sort: CategorySorting): [Category!]!
  • #
  • #
  • # Arguments
  • # manufacturerId: [Not documented]
  • manufacturer(manufacturerId: ID!): Manufacturer!
  • #
  • #
  • # Arguments
  • # filter: [Not documented]
  • # sort: [Not documented]
  • manufacturers(
  • filter: ManufacturerFilterList,
  • sort: ManufacturerSorting
  • ): [Manufacturer!]!
  • #
  • #
  • # Arguments
  • # linkId: [Not documented]
  • link(linkId: ID!): Link!
  • #
  • #
  • # Arguments
  • # filter: [Not documented]
  • links(filter: LinkFilterList): [Link!]!
  • #
  • #
  • # Arguments
  • # actionId: [Not documented]
  • action(actionId: ID!): Action!
  • #
  • #
  • # Arguments
  • # filter: [Not documented]
  • actions(filter: ActionFilterList): [Action!]!
  • #
  • #
  • # Arguments
  • # bannerId: [Not documented]
  • banner(bannerId: ID!): Banner!
  • #
  • banners: [Banner!]!
  • #
  • #
  • # Arguments
  • # promotionId: [Not documented]
  • promotion(promotionId: ID!): Promotion!
  • #
  • promotions: [Promotion!]!
  • #
  • #
  • # Arguments
  • # contentId: [Not documented]
  • content(contentId: ID!): Content!
  • #
  • #
  • # Arguments
  • # filter: [Not documented]
  • contents(filter: ContentFilterList): [Content!]!
  • # If `name` is ommited, gives you the currently active currency
  • #
  • # Arguments
  • # name: [Not documented]
  • currency(name: String): Currency!
  • #
  • currencies: [Currency!]!
  • #
  • #
  • # Arguments
  • # attributeId: [Not documented]
  • attribute(attributeId: ID!): Attribute!
  • #
  • #
  • # Arguments
  • # filter: [Not documented]
  • attributes(filter: AttributeFilterList): [Attribute!]!
  • #
  • #
  • # Arguments
  • # reviewId: [Not documented]
  • review(reviewId: ID!): Review!
  • #
  • #
  • # Arguments
  • # wishedPriceId: [Not documented]
  • wishedPrice(wishedPriceId: ID!): WishedPrice!
  • #
  • wishedPrices: [WishedPrice!]!
  • #
  • #
  • # Arguments
  • # countryId: [Not documented]
  • country(countryId: ID!): Country!
  • #
  • #
  • # Arguments
  • # filter: [Not documented]
  • # sort: [Not documented]
  • countries(filter: CountryFilterList, sort: CountrySorting): [Country!]!
  • # Returns information for any basket the customer owns.
  • #
  • # Arguments
  • # basketId: [Not documented]
  • basket(basketId: ID!): Basket!
  • # Returns information for any basket marked as public.
  • #
  • # Arguments
  • # basketId: [Not documented]
  • publicBasket(basketId: ID!): PublicBasket!
  • # Argument `owner` will be matched exactly against lastname and / or email
  • # Query for public baskets by owner.
  • #
  • # Arguments
  • # owner: [Not documented]
  • baskets(owner: String!): [PublicBasket!]!
  • #
  • #
  • # Arguments
  • # key: [Not documented]
  • translation(key: String!): Translation!
  • #
  • translations: [Translation!]!
  • }

link Require by

This element is not required by anyone