whitemarket Документація для партнерів

Edits the information of your products

mutation {
	market_edit_multiple(
		items: [{
			productId: "1ef34673-32bf-6dbc-84bb-0242ac1e000b" # Inventory ID
			price: {
				value: "42.42" # Decimal value
				currency: USD # Currency
			}
		}]
	) {
		# Position in request
		index # 1
		# instance of MarketProductUnion. Possible types:
		# MarketProduct
		# MarketProductHistory
		product
		# Error category
		errorCategory # market.product.not_found
		# Error category
		errorMessage # ❗️ Oops! Item not found.
	}
}