OBJECT
Query
link GraphQL Schema definition
1 type Query { 2 3 # Gets currency format by currency. 4 # 5 # Equivalent to GET /store/{storeId}/currency_format 6 # 7 # Arguments 8 # currency: The query name. 9 # numberUsage: The number usage. 10 # q: The query name. 11 # storeId: The store identifier. 12 ( 13 : String, 14 : String, 15 : Q!, 16 : String! 17 ): StoreCurrencyFormatDescriptionResponse 77 18 # Gets display prices for catalog entries by part numbers and price rule ID. 19 # 20 # Equivalent to GET /store/{storeId}/display_price 21 # 22 # Arguments 23 # catalogEntryId: The unique id of catalog entry. 24 # currency: The currency of the price. 25 # partNumber: The unique id of catalog entry. 26 # priceRuleId: The unique id of price rule. 27 # priceRuleName: The name of price rule. 28 # q: The query name. 29 # quantity: The quantity of the catalog entry. 30 # storeId: The store identifier. 31 # uom: The unit of measurement of the quantity. 32 ( 33 : [String]!, 34 : String, 35 : [String]!, 36 : String!, 37 : String!, 38 : Q3!, 39 : String, 40 : String!, 41 : String 42 ): DisplayPriceIBMStoreDisplayPrice 77 43 # Gets the entitled and range prices for catalog entries by part numbers. 44 # 45 # Equivalent to GET /store/{storeId}/price 46 # 47 # Arguments 48 # catalogEntryId: The id of the catalog entry. 49 # checkEntitlement: Whether to enable entitlement check when 50 # retrieving prices. 51 # contractId: The unique id of the contract. 52 # currency: The currency of the price. 53 # date: The date of the price. 54 # dynamicKitAsItem: Whether ot treat dynamic kits as items when 55 # retrieving prices. 56 # partNumber: The part number of the catalog entry. 57 # profileName: Profile name. Profiles determine the subset of 58 # data returned by a query. 59 # q: The query name. 60 # quantity: The quantity of the catalog entry. 61 # storeId: The store identifier. 62 # uom: The unit of measurement of the quantity. 63 ( 64 : [String]!, 65 : CheckEntitlement, 66 : String, 67 : Currency, 68 : String, 69 : DynamicKitAsItem, 70 : [String]!, 71 : ProfileName, 72 : Q2!, 73 : String, 74 : String!, 75 : String 76 ): PricePrice 78 79 }
link Required by
This element is not required by anyone