Add mutation for wallpaper types (#41)

This commit is contained in:
Niklas Fondberg
2021-09-13 09:25:42 +02:00
committed by GitHub
parent f0079086d9
commit 0a4be2b081
4 changed files with 39 additions and 4 deletions
+9 -1
View File
@@ -396,12 +396,20 @@ input ProductBlacklistingInput {
type Mutation {
productInfo(productId: Int!, info: ProductInfoInput!): Product
productFocusPoint(productId: Int!, focusXpoint2: Float!, focusYpoint2: Float!): Product
productFocusPoint(
productId: Int!
focusXpoint2: Float!
focusYpoint2: Float!
): Product
productBlacklisting(
productId: Int!
markets: [ProductBlacklistingInput]
): Product
productGroup(productId: Int!, groupIds: [Int]): Product
productKeywords(productId: Int!, keywordIds: [Int]): Product
productWallpaperType(
productId: Int!
wallpaperTypes: [ProductWallpaperType]!
): Product
addKeyword(name: String!, type: KeywordType): Keyword
}