OBJECT

Mutation

link GraphQL Schema definition

1type Mutation {
2
3# Finds prices in a store using a structure that allows multiple results in a
4# single query.
5#
6# Equivalent to POST /store/{storeId}/price
7#
8# Arguments
9# catalogId: The catalog identifier. If none is specified, the
10# store default catalog is used.
11# currency: The currency code to use for example, currency=USD.
12# If no currency code is specified, the store default currency is used. This value
13# is applied to all the queried products unless overridden at the product level.
14# profile: Setting the 'profile' to 'default' or not specifying
15# the 'profile' will result in normal prices being returned. A 'profile' value of
16# 'range' will return the normal prices, and in addition, will return a list of
17# range prices, which includes the minimum and maximum quantities as well as the
18# price for each range.
19# requestBody: [Not documented]
20# responseFormat: The response format. Valid values are json and
21# xml. If the request contains an input body, it must use the format specified in
22# responseFormat. If the responseFormat is not specified, the accept HTTP header
23# determines the format of the response. If the accept HTTP header is not
24# specified then default response format is json.
25# storeId: The store identifier.
26priceFindPricesByQuery(
27catalogId: String,
28currency: Currency,
29profile: Profile,
30requestBody: priceRequestsInput!,
31responseFormat: ResponseFormat,
32storeId: String!
33): PricePrices
35
36}

link Required by

This element is not required by anyone