From eb3f5597f75871989db7de4ffd44f4f715ff95a1 Mon Sep 17 00:00:00 2001 From: Nicola Molinari Date: Fri, 21 Aug 2020 19:50:40 +0200 Subject: [PATCH] chore: migrate to new graphql config --- .eslintrc.js | 144 + .eslintrc.yaml | 84 - .graphqlconfig.yaml | 42 - .graphqlrc.yml | 163 + .prettierrc | 16 +- codegen.yml | 128 - lint-staged.config.js | 11 +- package.json | 11 +- schemas/ctp.json | 124051 ++++++++++++++++++++++---------------- schemas/mc.json | 11474 ++-- schemas/proxy.json | 2688 +- schemas/settings.json | 27256 +++++---- scripts/graphql-cli.sh | 9 + yarn.lock | 145 +- 14 files changed, 96334 insertions(+), 69888 deletions(-) create mode 100644 .eslintrc.js delete mode 100644 .eslintrc.yaml delete mode 100644 .graphqlconfig.yaml create mode 100644 .graphqlrc.yml delete mode 100644 codegen.yml create mode 100755 scripts/graphql-cli.sh diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000000..a17241a989 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,144 @@ +module.exports = { + parser: '@typescript-eslint/parser', + parserOptions: { + ecmaFeatures: { + jsx: true, + }, + ecmaVersion: 8, + sourceType: 'module', + }, + extends: [ + 'plugin:@typescript-eslint/recommended', + 'plugin:import/errors', + 'plugin:import/warnings', + 'plugin:import/typescript', + 'plugin:jest/recommended', + 'plugin:react/recommended', + 'plugin:testing-library/react', + 'prettier', + 'prettier/react', + 'prettier/@typescript-eslint', + ], + plugins: [ + 'import', + 'jest', + 'jsx-a11y', + 'prettier', + 'react', + 'react-hooks', + 'graphql', + '@typescript-eslint/eslint-plugin', + ], + rules: { + '@typescript-eslint/ban-types': 0, + '@typescript-eslint/naming-convention': 0, + '@typescript-eslint/consistent-type-definitions': 0, + '@typescript-eslint/no-explicit-any': 2, + '@typescript-eslint/no-use-before-define': [ + 'error', + { + functions: false, + }, + ], + '@typescript-eslint/no-var-requires': 0, + '@typescript-eslint/unbound-method': 0, + 'react/jsx-tag-spacing': 0, + 'import/no-extraneous-dependencies': 0, + 'import/no-named-as-default': 0, + 'import/no-named-as-default-member': 0, + 'import/default': 0, + 'import/no-unresolved': 2, + 'react-hooks/rules-of-hooks': 'error', + 'react-hooks/exhaustive-deps': 'warn', + 'jest/expect-expect': 'off', + 'testing-library/prefer-presence-queries': 'error', + 'testing-library/await-async-query': 'error', + }, + settings: { + react: { + version: 'detect', + }, + 'import/parsers': { + '@typescript-eslint/parser': ['.js', '.jsx', '.ts', '.tsx'], + }, + 'import/resolver': { + 'eslint-import-resolver-typescript': true, + typescript: {}, + node: { + extensions: ['.js', '.jsx', '.ts', '.tsx'], + }, + }, + }, + overrides: [ + { + files: ['*.spec.js'], + rules: { + 'react/display-name': 0, + }, + }, + { + files: ['*.ts', '*.tsx'], + rules: { + '@typescript-eslint/ban-ts-comment': 0, + '@typescript-eslint/explicit-function-return-type': 0, + '@typescript-eslint/explicit-member-accessibility': [ + 2, + { + accessibility: 'no-public', + }, + ], + '@typescript-eslint/no-require-imports': 0, + '@typescript-eslint/promise-function-async': 0, + 'react/prop-types': 0, + }, + }, + { + files: ['**/*.mc.graphql'], + rules: { + 'graphql/template-strings': [ + 'error', + { + env: 'literal', + schemaJson: require('./schemas/mc.json'), + }, + ], + }, + }, + { + files: ['**/*.ctp.graphql'], + rules: { + 'graphql/template-strings': [ + 'error', + { + env: 'literal', + schemaJson: require('./schemas/ctp.json'), + }, + ], + }, + }, + { + files: ['**/*.settings.graphql'], + rules: { + 'graphql/template-strings': [ + 'error', + { + env: 'literal', + schemaJson: require('./schemas/settings.json'), + }, + ], + }, + }, + { + files: ['**/*.proxy.graphql'], + rules: { + 'graphql/template-strings': [ + 'error', + { + env: 'literal', + schemaJson: require('./schemas/proxy.json'), + }, + ], + }, + }, + ], +}; diff --git a/.eslintrc.yaml b/.eslintrc.yaml deleted file mode 100644 index 517ea10b35..0000000000 --- a/.eslintrc.yaml +++ /dev/null @@ -1,84 +0,0 @@ -parser: '@typescript-eslint/parser' -parserOptions: - ecmaFeatures: - jsx: true - ecmaVersion: 8 - sourceType: module -extends: - - plugin:@typescript-eslint/recommended - - plugin:import/errors - - plugin:import/warnings - - plugin:import/typescript - - plugin:jest/recommended - - plugin:react/recommended - - plugin:testing-library/react - - prettier - - prettier/react - - prettier/@typescript-eslint -plugins: - - import - - jest - - jsx-a11y - - prettier - - react - - react-hooks - - graphql - - '@typescript-eslint/eslint-plugin' -rules: - '@typescript-eslint/ban-types': 0 - '@typescript-eslint/naming-convention': 0 - '@typescript-eslint/consistent-type-definitions': 0 - '@typescript-eslint/no-explicit-any': 2 - '@typescript-eslint/no-use-before-define': - - error - - functions: false - '@typescript-eslint/no-var-requires': 0 - '@typescript-eslint/unbound-method': 0 - react/jsx-tag-spacing: 0 - import/no-extraneous-dependencies: 0 - import/no-named-as-default: 0 - import/no-named-as-default-member: 0 - import/default: 0 - import/no-unresolved: 2 - 'react-hooks/rules-of-hooks': 'error' - 'react-hooks/exhaustive-deps': 'warn' - graphql/template-strings: - - error - - env: literal - 'jest/expect-expect': 'off' - 'testing-library/prefer-presence-queries': 'error' - 'testing-library/await-async-query': 'error' -settings: - react: - version: 'detect' - # import/ignore: - # - /test-utils/ - # - test-utils$ - # - test-utils\.js$ - import/parsers: - '@typescript-eslint/parser': ['.js', '.jsx', '.ts', '.tsx'] - import/resolver: - eslint-import-resolver-typescript: true - typescript: {} - node: - extensions: ['.js', '.jsx', '.ts', '.tsx'] -overrides: - - files: ['*.spec.js'] - rules: - 'react/display-name': 0 - - files: ['*.ts', '*.tsx'] - rules: - '@typescript-eslint/ban-ts-comment': 0 - '@typescript-eslint/explicit-function-return-type': 0 - '@typescript-eslint/explicit-member-accessibility': - [2, { accessibility: 'no-public' }] - '@typescript-eslint/no-require-imports': 0 - '@typescript-eslint/promise-function-async': 0 - react/prop-types: 0 - # import/extensions: - # - error - # - always - # - js: never - # - mjs: never - # - ts: never - # - tsx: never diff --git a/.graphqlconfig.yaml b/.graphqlconfig.yaml deleted file mode 100644 index 1619e0d377..0000000000 --- a/.graphqlconfig.yaml +++ /dev/null @@ -1,42 +0,0 @@ -projects: - mc: - schemaPath: schemas/mc.json - includes: - - '**/*.mc.graphql' - extensions: - endpoints: - production: - url: '${env:MC_API_URL}' - headers: - X-Graphql-Target: mc - proxy: - schemaPath: schemas/proxy.json - includes: - - '**/*.proxy.graphql' - extensions: - endpoints: - production: - url: '${env:MC_PROXY_URL}' - settings: - schemaPath: schemas/settings.json - includes: - - '**/*.settings.graphql' - extensions: - endpoints: - production: - url: '${env:MC_API_URL}' - headers: - Cookie: mcAccessToken=${env:MC_ACCESS_TOKEN} - X-Graphql-Target: settings - ctp: - schemaPath: schemas/ctp.json - includes: - - '**/*.ctp.graphql' - extensions: - endpoints: - production: - url: '${env:MC_API_URL}' - headers: - Cookie: mcAccessToken=${env:MC_ACCESS_TOKEN} - X-Graphql-Target: ctp - X-Project-Key: ${env:CTP_PROJECT_KEY} diff --git a/.graphqlrc.yml b/.graphqlrc.yml new file mode 100644 index 0000000000..c50102ecf2 --- /dev/null +++ b/.graphqlrc.yml @@ -0,0 +1,163 @@ +projects: + mc: + schema: + - '${MC_API_URL}': + headers: + X-Graphql-Target: mc + documents: '**/*.mc.graphql' + extensions: + codegen: + generates: + schemas/mc.json: + plugins: + - introspection + '@types-extensions/graphql-mc.d.ts': + plugins: + - add: /* THIS IS A GENERATED FILE */ + - add: /* eslint-disable import/no-duplicates */ + - typescript-graphql-files-modules + packages/application-shell-connectors/src/types/generated/mc.ts: + config: + addUnderscoreToArgsType: true + avoidOptionals: true + maybeValue: T | undefined + typesPrefix: T + plugins: + - typescript + - typescript-operations + packages/application-shell/src/types/generated/mc.ts: + config: + addUnderscoreToArgsType: true + avoidOptionals: true + maybeValue: T | undefined + typesPrefix: T + plugins: + - typescript + - typescript-operations + hooks: + afterAllFileWrite: + - prettier --write + ctp: + schema: + - '${MC_API_URL}': + headers: + Cookie: mcAccessToken=${MC_ACCESS_TOKEN} + X-Graphql-Target: ctp + X-Project-Key: ${CTP_PROJECT_KEY} + documents: '**/*.ctp.graphql' + extensions: + codegen: + generates: + schemas/ctp.json: + plugins: + - introspection + '@types-extensions/graphql-ctp.d.ts': + schema: schemas/ctp.json + documents: packages/**/src/**/*.ctp.graphql + plugins: + - add: '/* THIS IS A GENERATED FILE */' + - add: '/* eslint-disable import/no-duplicates */' + - typescript-graphql-files-modules + packages/application-shell/src/types/generated/ctp.ts: + schema: schemas/ctp.json + documents: packages/**/src/**/*.ctp.graphql + plugins: + - typescript + - typescript-operations + config: + typesPrefix: T + addUnderscoreToArgsType: true + avoidOptionals: true + maybeValue: T | undefined + scalars: + Long: number + DateTime: string + Country: string + Locale: string + Date: string + Json: '{ [key: string]: unknown }' + Currency: string + KeyReferenceInput: string + SearchFilter: string + SearchSort: string + YearMonth: string + BigDecimal: string + Time: string + hooks: + afterAllFileWrite: + - prettier --write + settings: + schema: + - '${MC_API_URL}': + headers: + Cookie: mcAccessToken=${MC_ACCESS_TOKEN} + X-Graphql-Target: settings + documents: '**/*.settings.graphql' + extensions: + codegen: + generates: + schemas/settings.json: + plugins: + - introspection + '@types-extensions/graphql-settings.d.ts': + schema: schemas/settings.json + documents: packages/**/src/**/*.settings.graphql + plugins: + - add: '/* THIS IS A GENERATED FILE */' + - add: '/* eslint-disable import/no-duplicates */' + - typescript-graphql-files-modules + packages/application-shell/src/types/generated/settings.ts: + schema: schemas/settings.json + documents: packages/**/src/**/*.settings.graphql + plugins: + - typescript + - typescript-operations + config: + typesPrefix: T + addUnderscoreToArgsType: true + avoidOptionals: true + maybeValue: T | undefined + scalars: + DateTime: string + Json: '{ [key: string]: unknown }' + packages/application-shell-connectors/src/types/generated/settings.ts: + schema: schemas/settings.json + documents: packages/**/src/**/*.settings.graphql + plugins: + - typescript + - typescript-operations + config: + typesPrefix: T + addUnderscoreToArgsType: true + avoidOptionals: true + maybeValue: T | undefined + scalars: + DateTime: string + Json: '{ [key: string]: unknown }' + proxy: + schema: '${MC_PROXY_URL}' + documents: '**/*.proxy.graphql' + extensions: + codegen: + generates: + schemas/proxy.json: + plugins: + - introspection + '@types-extensions/graphql-proxy.d.ts': + schema: schemas/proxy.json + documents: packages/**/src/**/*.proxy.graphql + plugins: + - add: '/* THIS IS A GENERATED FILE */' + - add: '/* eslint-disable import/no-duplicates */' + - typescript-graphql-files-modules + packages/application-shell/src/types/generated/proxy.ts: + schema: schemas/proxy.json + documents: packages/**/src/**/*.proxy.graphql + plugins: + - typescript + - typescript-operations + config: + typesPrefix: T + addUnderscoreToArgsType: true + avoidOptionals: true + maybeValue: T | undefined \ No newline at end of file diff --git a/.prettierrc b/.prettierrc index 49ec8631a7..ca5f8dcecb 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,5 +1,19 @@ { "trailingComma": "es5", "singleQuote": true, - "parser": "typescript" + "parser": "typescript", + "overrides": [ + { + "files": "*.json", + "options": { + "parser": "json" + } + }, + { + "files": "*.graphql", + "options": { + "parser": "graphql" + } + } + ] } diff --git a/codegen.yml b/codegen.yml deleted file mode 100644 index 185a2422d2..0000000000 --- a/codegen.yml +++ /dev/null @@ -1,128 +0,0 @@ -overwrite: true -hooks: - afterAllFileWrite: - - prettier --write -generates: - # GraphQL document imports declaration files - '@types-extensions/graphql-ctp.d.ts': - schema: schemas/ctp.json - documents: packages/**/src/**/*.ctp.graphql - plugins: - - add: '/* THIS IS A GENERATED FILE */' - - add: '/* eslint-disable import/no-duplicates */' - - typescript-graphql-files-modules - '@types-extensions/graphql-mc.d.ts': - schema: schemas/mc.json - documents: packages/**/src/**/*.mc.graphql - plugins: - - add: '/* THIS IS A GENERATED FILE */' - - add: '/* eslint-disable import/no-duplicates */' - - typescript-graphql-files-modules - '@types-extensions/graphql-proxy.d.ts': - schema: schemas/proxy.json - documents: packages/**/src/**/*.proxy.graphql - plugins: - - add: '/* THIS IS A GENERATED FILE */' - - add: '/* eslint-disable import/no-duplicates */' - - typescript-graphql-files-modules - '@types-extensions/graphql-settings.d.ts': - schema: schemas/settings.json - documents: packages/**/src/**/*.settings.graphql - plugins: - - add: '/* THIS IS A GENERATED FILE */' - - add: '/* eslint-disable import/no-duplicates */' - - typescript-graphql-files-modules - - # CTP - packages/application-shell/src/types/generated/ctp.ts: - schema: schemas/ctp.json - documents: packages/**/src/**/*.ctp.graphql - plugins: - - typescript - - typescript-operations - config: - typesPrefix: T - addUnderscoreToArgsType: true - avoidOptionals: true - maybeValue: T | undefined - scalars: - Long: number - DateTime: string - Country: string - Locale: string - Date: string - Json: '{ [key: string]: unknown }' - Currency: string - KeyReferenceInput: string - SearchFilter: string - SearchSort: string - YearMonth: string - BigDecimal: string - Time: string - - # MC Gateway - packages/application-shell/src/types/generated/mc.ts: - schema: schemas/mc.json - documents: packages/**/src/**/*.mc.graphql - plugins: - - typescript - - typescript-operations - config: - typesPrefix: T - addUnderscoreToArgsType: true - avoidOptionals: true - maybeValue: T | undefined - packages/application-shell-connectors/src/types/generated/mc.ts: - schema: schemas/mc.json - documents: packages/**/src/**/*.mc.graphql - plugins: - - typescript - - typescript-operations - config: - typesPrefix: T - addUnderscoreToArgsType: true - avoidOptionals: true - maybeValue: T | undefined - - # MC Proxy - packages/application-shell/src/types/generated/proxy.ts: - schema: schemas/proxy.json - documents: packages/**/src/**/*.proxy.graphql - plugins: - - typescript - - typescript-operations - config: - typesPrefix: T - addUnderscoreToArgsType: true - avoidOptionals: true - maybeValue: T | undefined - - # MC Settings - packages/application-shell/src/types/generated/settings.ts: - schema: schemas/settings.json - documents: packages/**/src/**/*.settings.graphql - plugins: - - typescript - - typescript-operations - config: - typesPrefix: T - addUnderscoreToArgsType: true - avoidOptionals: true - maybeValue: T | undefined - scalars: - DateTime: string - Json: '{ [key: string]: unknown }' - packages/application-shell-connectors/src/types/generated/settings.ts: - schema: schemas/settings.json - documents: packages/**/src/**/*.settings.graphql - plugins: - - typescript - - typescript-operations - config: - typesPrefix: T - addUnderscoreToArgsType: true - avoidOptionals: true - maybeValue: T | undefined - scalars: - DateTime: string - Json: '{ [key: string]: unknown }' diff --git a/lint-staged.config.js b/lint-staged.config.js index 37c42dc758..1cd77ca57f 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,7 +1,11 @@ module.exports = { '*.md': ['prettier --write --parser markdown'], '*.yaml': ['prettier --write --parser yaml'], - '*.graphql': ['prettier --write --parser graphql', 'yarn generate:types'], + '*.graphql': ['prettier --write --parser graphql'], + '*.mc.graphql': () => 'yarn generate-types:mc', + '*.ctp.graphql': () => 'yarn generate-types:ctp', + '*.settings.graphql': () => 'yarn generate-types:settings', + '*.proxy.graphql': () => 'yarn generate-types:proxy', '*.{js,ts,tsx}': [ 'prettier --write', // NOTE: apparently if you pass some argument that is not a flag AFTER the `reporters` @@ -26,7 +30,6 @@ module.exports = { // For that reason, we move the `--onlyChanged` flag next to it. 'yarn lint:css --reporters=jest-silent-reporter --onlyChanged', ], - 'packages/application-config/schema.json': [ - 'bash -c "yarn --cwd packages/application-config build:schema"', - ], + 'packages/application-config/schema.json': () => + 'yarn --cwd packages/application-config build:schema', }; diff --git a/package.json b/package.json index 36be94bd34..bfafb6780c 100644 --- a/package.json +++ b/package.json @@ -48,8 +48,11 @@ "build:website": "yarn build --scope '@commercetools-frontend/application-components' --include-dependencies && yarn --cwd website build && yarn --cwd website-components-playground build", "now-build": "yarn build:website && rm -rf public && mv website/public public", "labels:sync": "github-labels sync", - "get-schemas": "graphql get-schema", - "generate:types": "graphql-codegen", + "generate-types:mc": "./scripts/graphql-cli.sh codegen --project mc", + "generate-types:ctp": "./scripts/graphql-cli.sh codegen --project ctp", + "generate-types:settings": "./scripts/graphql-cli.sh codegen --project settings", + "generate-types:proxy": "./scripts/graphql-cli.sh codegen --project proxy", + "generate-types": "yarn generate-types:mc && yarn generate-types:ctp && yarn generate-types:settings && yarn generate-types:proxy", "versions:uikit": "bulk-update-versions --match '@commercetools-uikit/(.*)'" }, "workspaces": { @@ -77,8 +80,12 @@ "@commitlint/cli": "9.1.1", "@commitlint/config-conventional": "9.1.1", "@formatjs/cli": "2.7.3", + "@graphql-cli/codegen": "1.17.8", + "@graphql-cli/coverage": "2.1.0", + "@graphql-cli/validate": "2.1.0", "@graphql-codegen/add": "1.17.7", "@graphql-codegen/cli": "1.17.8", + "@graphql-codegen/introspection": "1.17.8", "@graphql-codegen/typescript": "1.17.8", "@graphql-codegen/typescript-graphql-files-modules": "1.17.8", "@graphql-codegen/typescript-operations": "1.17.8", diff --git a/schemas/ctp.json b/schemas/ctp.json index 70cd39c9b9..59349b4de2 100644 --- a/schemas/ctp.json +++ b/schemas/ctp.json @@ -1,1179 +1,1532 @@ { - "data": { - "__schema": { - "queryType": { - "name": "Query" - }, - "mutationType": { - "name": "Mutation" - }, - "subscriptionType": null, - "types": [ - { - "kind": "OBJECT", - "name": "Query", - "description": null, - "fields": [ - { - "name": "me", - "description": "This field can only be used with an access token created with the password flow or with an anonymous session.\n\nIt gives access to the data that is specific to the customer or the anonymous session linked to the access token.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Me", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inStore", - "description": "This field gives access to the resources (such as carts) that are inside the given store.", - "args": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": { + "name": "Mutation" + }, + "subscriptionType": { + "name": "Subscription" + }, + "types": [ + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "me", + "description": "This field can only be used with an access token created with the password flow or with an anonymous session.\n\nIt gives access to the data that is specific to the customer or the anonymous session linked to the access token.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Me", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inStore", + "description": "This field gives access to the resources (such as carts) that are inside the given store. Currently in beta.", + "args": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InStore", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inStores", + "description": "This field gives access to the resources (such as carts) that are inside one of the given stores. Currently in beta.", + "args": [ + { + "name": "keys", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + } } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InStore", + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InStore", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroup", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "beta feature" + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomerGroup", + "ofType": null }, - { - "name": "inStores", - "description": "This field gives access to the resources (such as carts) that are inside one of the given stores.", - "args": [ - { - "name": "keys", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroups", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InStore", + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "beta feature" - }, - { - "name": "customerGroup", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null + "name": "CustomerGroupQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "category", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null }, - { - "name": "customerGroups", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "categories", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CustomerGroupQueryResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "category", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CategoryQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "categoryAutocomplete", + "description": "Autocomplete the categories based on category fields like name, description, etc.", + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Category", - "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "categories", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { + { + "name": "text", + "description": "Incomplete user input.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "10" + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "filters", + "description": "Filters to apply during the search and autocomplete - supported fields are:\n* `id`\n* `slug`\n* `externalId`\n* `key`\n* `ancestors`\n* `parent.id`\n* `level`\n* `createdAt`\n* `modifiedAt`\n* `name.{language}:missing`\n* `externalId:missing`\n* `description.{language}:missing`\n* `childCount`\n* `productCount`\n* `productTypeNames`", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "SearchFilter", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CategorySearchResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "categorySearch", + "description": "Search the categories using full-text search, filtering and sorting", + "args": [ + { + "name": "fulltext", + "description": "Full-text search input.", + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedText", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CategoryQueryResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": "10" }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "categoryAutocomplete", - "description": "Autocomplete the categories based on category fields like name, description, etc.", - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "queryFilters", + "description": "Filters to apply before the results of facets", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "SearchFilter", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "text", - "description": "Incomplete user input.", - "type": { + "defaultValue": null + }, + { + "name": "filters", + "description": "Filters to apply during the search and autocomplete - supported fields are:\n* `id`\n* `slug`\n* `externalId`\n* `key`\n* `ancestors`\n* `parent.id`\n* `level`\n* `createdAt`\n* `modifiedAt`\n* `name.{language}:missing`\n* `externalId:missing`\n* `description.{language}:missing`\n* `childCount`\n* `productCount`\n* `productTypeNames`", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "SearchFilter", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" + } }, - { - "name": "filters", - "description": "Filters to apply during the search and autocomplete - supported fields are:\n* `id`\n* `slug`\n* `externalId`\n* `key`\n* `ancestors`\n* `parent.id`\n* `level`\n* `createdAt`\n* `modifiedAt`\n* `name.{language}:missing`\n* `externalId:missing`\n* `description.{language}:missing`\n* `childCount`\n* `productCount`\n* `productTypeNames`", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sorts", + "description": "Sort result - supported fields are:\n\n* `id`\n* `name`\n* `createdAt`\n* `modifiedAt`\n\nby default sorted by relevance (a score of matches against the search term in descending order)", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "SearchFilter", - "ofType": null - } + "kind": "SCALAR", + "name": "SearchSort", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CategorySearchResult", + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CategorySearchResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channel", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "categorySearch", - "description": "Search the categories using full-text search, filtering and sorting", - "args": [ - { - "name": "fulltext", - "description": "Full-text search input.", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedText", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "10" - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "queryFilters", - "description": "Filters to apply before the results of facets", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "SearchFilter", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channels", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "filters", - "description": "Filters to apply during the search and autocomplete - supported fields are:\n* `id`\n* `slug`\n* `externalId`\n* `key`\n* `ancestors`\n* `parent.id`\n* `level`\n* `createdAt`\n* `modifiedAt`\n* `name.{language}:missing`\n* `externalId:missing`\n* `description.{language}:missing`\n* `childCount`\n* `productCount`\n* `productTypeNames`", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "SearchFilter", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "sorts", - "description": "Sort result - supported fields are:\n\n* `id`\n* `name`\n* `createdAt`\n* `modifiedAt`\n\nby default sorted by relevance (a score of matches against the search term in descending order)\n", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "SearchSort", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CategorySearchResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channel", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Channel", - "ofType": null + "name": "ChannelQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customObject", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "container", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomObject", + "ofType": null }, - { - "name": "channels", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customObjects", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChannelQueryResult", + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productType", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { + { + "name": "container", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "ProductTypeDefinition", - "ofType": null + "name": "CustomObjectQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productType", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductTypeDefinition", + "ofType": null }, - { - "name": "productTypes", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productTypes", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductTypeDefinitionQueryResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "typeDefinition", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "TypeDefinition", - "ofType": null + "name": "ProductTypeDefinitionQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "typeDefinition", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TypeDefinition", + "ofType": null }, - { - "name": "typeDefinitions", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "typeDefinitions", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TypeDefinitionQueryResult", - "ofType": null - } + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shippingMethod", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "ShippingMethod", - "ofType": null + "name": "TypeDefinitionQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethod", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null }, - { - "name": "shippingMethods", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethods", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "limit", - "description": null, - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethodQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethodsByCart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethodsByLocation", + "description": null, + "args": [ + { + "name": "country", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "currency", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ShippingMethodQueryResult", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zone", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Zone", + "ofType": null }, - { - "name": "shippingMethodsByCart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zones", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ShippingMethod", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ZoneQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategory", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TaxCategory", + "ofType": null }, - { - "name": "shippingMethodsByLocation", - "description": null, - "args": [ - { - "name": "country", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategories", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Country", + "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "state", - "description": null, - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TaxCategoryQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountCode", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "currency", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DiscountCode", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountCodes", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ShippingMethod", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "zone", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Zone", - "ofType": null + "name": "DiscountCodeQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cartDiscount", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CartDiscount", + "ofType": null }, - { - "name": "zones", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cartDiscounts", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ZoneQueryResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxCategory", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "TaxCategory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxCategories", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { + "name": "CartDiscountQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productDiscount", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaxCategoryQueryResult", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductDiscount", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productDiscounts", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountCode", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -1181,189 +1534,155 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DiscountCode", - "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountCodes", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductDiscountQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "product", + "description": null, + "args": [ + { + "name": "sku", + "description": "Queries for a product with specified SKU", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DiscountCodeQueryResult", + "defaultValue": null + }, + { + "name": "variantKey", + "description": "Queries for a product with specified [product variant key](https://dev.commercetools.com/http-api-projects-products.html#variant_key)", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cartDiscount", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CartDiscount", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null }, - { - "name": "cartDiscounts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "products", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CartDiscountQueryResult", + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productDiscount", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + { + "name": "skus", + "description": "Queries for products with specified SKUs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -1371,443 +1690,602 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "ProductDiscount", - "ofType": null + "name": "ProductQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "State", + "ofType": null }, - { - "name": "productDiscounts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "states", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductDiscountQueryResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "product", - "description": null, - "args": [ - { - "name": "sku", - "description": "Queries for a product with specified SKU", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "variantKey", - "description": "Queries for a product with specified [product variant key](https://dev.commercetools.com/http-api-projects-products.html#variant_key)", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StateQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": null, + "args": [ + { + "name": "emailToken", + "description": "Queries a customer with specified email token", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "passwordToken", + "description": "Queries a customer with specified password token", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Product", - "ofType": null + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "products", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customers", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomerQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inventoryEntry", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "skus", - "description": "Queries for products with specified SKUs", - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "InventoryEntry", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inventoryEntries", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductQueryResult", + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "State", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "states", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { + "name": "InventoryEntryQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carts", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StateQueryResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customer", - "description": null, - "args": [ - { - "name": "emailToken", - "description": "Queries a customer with specified email token", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "passwordToken", - "description": "Queries a customer with specified password token", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerActiveCart", + "description": null, + "args": [ + { + "name": "customerId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "orderNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null }, - { - "name": "customers", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orders", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CustomerQueryResult", + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderEdit", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrderEdit", + "ofType": null }, - { - "name": "inventoryEntry", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderEdits", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -1815,91 +2293,97 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "InventoryEntry", - "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inventoryEntries", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InventoryEntryQueryResult", + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderEditQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingList", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null }, - { - "name": "cart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingLists", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -1907,91 +2391,97 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "carts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CartQueryResult", + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShoppingListQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "payment", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null }, - { - "name": "customerActiveCart", - "description": null, - "args": [ - { - "name": "customerId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "payments", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -1999,434 +2489,407 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "orderNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Order", + "name": "PaymentQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectProjection", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "store", + "description": "beta feature", + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Store", + "ofType": null }, - { - "name": "orders", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stores", + "description": "beta feature", + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderQueryResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shoppingList", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "ShoppingList", - "ofType": null + "name": "StoreQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "review", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Review", + "ofType": null }, - { - "name": "shoppingLists", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviews", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShoppingListQueryResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "payment", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Payment", - "ofType": null + "name": "ReviewQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscription", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Subscription", + "ofType": null }, - { - "name": "payments", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriptions", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PaymentQueryResult", - "ofType": null - } + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectProjection", + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "store", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Store", - "ofType": null + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "beta feature" - }, - { - "name": "stores", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SubscriptionQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extension", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StoreQueryResult", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Extension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extensions", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "beta feature" - }, - { - "name": "apiClient", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -2434,138 +2897,91 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "APIClientWithoutSecret", - "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiClients", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "limit", - "description": null, - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExtensionQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apiClient", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "APIClientWithoutSecretQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartQueryInterface", - "ofType": null - }, - { - "kind": "INTERFACE", - "name": "CustomerActiveCartInterface", - "ofType": null - }, - { - "kind": "INTERFACE", - "name": "OrderQueryInterface", - "ofType": null - }, - { - "kind": "INTERFACE", - "name": "CustomerQueryInterface", - "ofType": null - }, - { - "kind": "INTERFACE", - "name": "ShoppingListQueryInterface", - "ofType": null - }, - { - "kind": "INTERFACE", - "name": "ShippingMethodsByCartInterface", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "APIClientWithoutSecret", "ofType": null }, - { - "kind": "INTERFACE", - "name": "MeFieldInterface", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "CartQueryInterface", - "description": "Fields to access carts. Includes direct access to a single cart and searching for carts.", - "fields": [ - { - "name": "cart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apiClients", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -2573,1274 +2989,1957 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "carts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "limit", - "description": null, - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "APIClientWithoutSecretQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "limits", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectCustomLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartQueryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "CustomerActiveCartInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "OrderQueryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "CustomerQueryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "ShoppingListQueryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "ShippingMethodsByCartInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "MeFieldInterface", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "CartQueryInterface", + "description": "Fields to access carts. Includes direct access to a single cart and searching for carts.", + "fields": [ + { + "name": "cart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CartQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "InStore", - "ofType": null - } - ] - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Cart", - "description": "A shopping cart holds product variants and can be ordered. Each cart either belongs to a registered customer or is an anonymous cart.", - "fields": [ - { - "name": "customerId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customer", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customerEmail", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "anonymousId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carts", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lineItems", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LineItem", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customLineItems", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InStore", + "ofType": null + } + ] + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Cart", + "description": "A shopping cart holds product variants and can be ordered. Each cart either\nbelongs to a registered customer or is an anonymous cart.", + "fields": [ + { + "name": "customerId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerEmail", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anonymousId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItems", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CustomLineItem", - "ofType": null - } + "kind": "OBJECT", + "name": "LineItem", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalPrice", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItems", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomLineItem", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxedPrice", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalPrice", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "TaxedPrice", + "name": "Money", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shippingAddress", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Address", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxedPrice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TaxedPrice", + "ofType": null }, - { - "name": "billingAddress", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Address", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingAddress", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "billingAddress", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inventoryMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "InventoryMode", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxRoundingMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RoundingMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCalculationMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxCalculationMode", + "ofType": null + } }, - { - "name": "inventoryMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "InventoryMode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroup", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomerGroup", + "ofType": null }, - { - "name": "taxMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroupRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingInfo", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ShippingInfo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountCodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "TaxMode", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiscountCodeInfo", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxRoundingMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refusedGifts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "RoundingMode", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartDiscount", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxCalculationMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refusedGiftsRefs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "TaxCalculationMode", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerGroup", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentInfo", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "PaymentInfo", + "ofType": null }, - { - "name": "customerGroupRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null }, - { - "name": "country", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Country", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingRateInput", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "ShippingRateInput", + "ofType": null }, - { - "name": "shippingInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ShippingInfo", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "origin", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CartOrigin", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "discountCodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "storeRef", + "description": "beta feature", + "args": [], + "type": { + "kind": "OBJECT", + "name": "KeyReference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "store", + "description": "beta feature", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Store", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "itemShippingAddresses", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DiscountCodeInfo", - "ofType": null - } + "kind": "OBJECT", + "name": "Address", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refusedGifts", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cartState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CartState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CartDiscount", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "refusedGiftsRefs", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Reference", + "kind": "SCALAR", + "name": "String", "ofType": null } } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RawCustomField", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "paymentInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PaymentInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteDaysAfterLastModification", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "locale", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shippingRateInput", - "description": null, - "args": [], - "type": { - "kind": "INTERFACE", - "name": "ShippingRateInput", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "origin", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CartOrigin", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "storeRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeyReference", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "beta feature" + } }, - { - "name": "store", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Store", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "beta feature" + } }, - { - "name": "itemShippingAddresses", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Address", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cartState", - "description": null, - "args": [], - "type": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "CartState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RawCustomField", - "ofType": null - } - } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "Versioned", + "description": "Versioned object have an ID and version and modification. Every update of this object changes it's version.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + } }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteDaysAfterLastModification", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Cart", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Customer", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CustomerGroup", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TypeDefinition", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Store", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProductTypeDefinition", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProductDiscount", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "State", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CartDiscount", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TaxCategory", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Zone", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DiscountCode", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Category", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CustomObject", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Product", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InventoryEntry", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OrderEdit", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Review", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Subscription", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Extension", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CustomerPasswordToken", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CustomerEmailToken", + "ofType": null + } + ] + }, + { + "kind": "SCALAR", + "name": "Long", + "description": "The `Long` scalar type represents non-fractional signed whole numeric values. Long can represent values between -(2^63) and 2^63 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "DateTime", + "description": "DateTime is a scalar value that represents an ISO8601 formatted date and time.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Initiator", + "description": null, + "fields": [ + { + "name": "isPlatformClient", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalUserId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anonymousId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use 'customerRef' to fetch the reference." + }, + { + "name": "user", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use 'userRef' to fetch the reference." + }, + { + "name": "customerRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Reference", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Customer", + "description": "A customer is a person purchasing products. Carts, Orders and Reviews can be associated to a customer.", + "fields": [ + { + "name": "customerNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "password", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addresses", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "CustomField", + "kind": "OBJECT", + "name": "Address", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "Versioned", - "description": "Versioned object have an ID and version and modification. Every update of this object changes it's version.", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultShippingAddressId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultBillingAddressId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingAddressIds", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "billingAddressIds", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isEmailVerified", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TypeDefinition", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Store", - "ofType": null + } }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroupRef", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "ProductTypeDefinition", + "name": "Reference", "ofType": null }, - { - "kind": "OBJECT", - "name": "Channel", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "ProductDiscount", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "State", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "firstName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "CartDiscount", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "TaxCategory", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "middleName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "ShippingMethod", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "Zone", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Locale", "ofType": null }, - { - "kind": "OBJECT", - "name": "DiscountCode", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "salutation", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "Payment", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dateOfBirth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", "ofType": null }, - { - "kind": "OBJECT", - "name": "Order", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "companyName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "ShoppingList", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "vatId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroup", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "Category", + "name": "CustomerGroup", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultShippingAddress", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "Product", + "name": "Address", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultBillingAddress", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "InventoryEntry", + "name": "Address", "ofType": null - } - ] - }, - { - "kind": "SCALAR", - "name": "Long", - "description": "The `Long` scalar type represents non-fractional signed whole numeric values. Long can represent values between -(2^63) and 2^63 - 1.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "DateTime", - "description": "DateTime is a scalar value that represents an ISO8601 formatted date and time.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Initiator", - "description": null, - "fields": [ - { - "name": "isPlatformClient", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalUserId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customer", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "anonymousId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "clientId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Reference", - "description": null, - "fields": [ - { - "name": "typeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingAddresses", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "billingAddresses", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Customer", - "description": "A customer is a person purchasing products. Carts, Orders and Reviews can be associated to a customer.", - "fields": [ - { - "name": "customerNumber", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "storesRef", + "description": "beta feature", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "KeyReference", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "password", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stores", + "description": "beta feature", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Store", + "ofType": null + } } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addresses", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Address", + "kind": "SCALAR", + "name": "String", "ofType": null } } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RawCustomField", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null }, - { - "name": "defaultShippingAddressId", - "description": null, - "args": [], - "type": { + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "defaultBillingAddressId", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shippingAddressIds", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { @@ -3852,19 +4951,13 @@ "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "billingAddressIds", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { @@ -3876,345 +4969,948 @@ "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isEmailVerified", - "description": null, - "args": [], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Address", + "description": "An address represents a postal address.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "customerGroupRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "externalId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "salutation", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "firstName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "firstName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "lastName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "streetName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "middleName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "streetNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "title", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "additionalStreetInfo", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "postalCode", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "city", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "locale", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "Country", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "company", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "department", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "building", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apartment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pOBox", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contactInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AddressContactInfo", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "Field 'contactInfo' is deprecated. Instead of using e.g. 'contactInfo.email' use 'email' directly." + }, + { + "name": "additionalAddressInfo", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "phone", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mobile", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fax", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "salutation", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Country", + "description": "[ISO 3166-1](http://en.wikipedia.org/wiki/ISO_3166-1) country code.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddressContactInfo", + "description": null, + "fields": [ + { + "name": "phone", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mobile", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fax", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Locale", + "description": "Locale is a scalar value represented as a string language tag.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Date", + "description": "DateTime is a scalar value that represents an ISO8601 formatted date.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomerGroup", + "description": "A customer can be a member in a customer group (e.g. reseller, gold member). A\ncustomer group can be used in price calculations with special prices being\nassigned to certain customer groups.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "dateOfBirth", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Date", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "companyName", - "description": null, - "args": [], - "type": { + "isDeprecated": true, + "deprecationReason": "Use 'customerGroupRef' to fetch the reference." + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "vatId", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customerGroup", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "defaultShippingAddress", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Address", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "defaultBillingAddress", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Address", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shippingAddresses", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Address", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "billingAddresses", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Address", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "storesRef", - "description": null, - "args": [], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "RawCustomField", + "ofType": null + } + } + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "KeyReference", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "beta feature" - }, - { - "name": "stores", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Store", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": true, - "deprecationReason": "beta feature" + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RawCustomField", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Json", + "description": "Raw JSON value", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "Type", + "description": null, + "fields": [ + { + "name": "typeRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TypeDefinition", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "OBJECT", + "name": "TypeDefinition", + "description": "Types define the structure of custom fields which can be attached to different entities throughout the platform.", + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Locale", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Locale", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -4222,722 +5918,966 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "LocalizedString", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" - }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" - }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resourceTypeIds", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fieldDefinitions", + "description": null, + "args": [ + { + "name": "includeNames", + "description": "The names of the custom field definitions to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom field definitions to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "CustomField", + "kind": "OBJECT", + "name": "FieldDefinition", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Address", - "description": "An address represents a postal address.", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "title", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "salutation", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "firstName", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastName", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "streetName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null }, - { - "name": "streetNumber", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null }, - { - "name": "additionalStreetInfo", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedString", + "description": null, + "fields": [ + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "postalCode", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "city", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FieldDefinition", + "description": "Field definitions describe custom fields and allow you to define some meta-information associated with the field.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "region", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "required", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputHint", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TextInputHint", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "country", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Country", + "name": "Locale", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "company", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "department", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "building", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TextInputHint", + "description": "UI hint telling what kind of edit control should be displayed for a text attribute.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SingleLine", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MultiLine", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "FieldType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apartment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BooleanType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DateTimeType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DateType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EnumType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LocalizedEnumType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LocalizedStringType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MoneyType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "NumberType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ReferenceType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "StringType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TimeType", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "CustomFieldsType", + "description": null, + "fields": [ + { + "name": "typeRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "pOBox", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TypeDefinition", + "ofType": null }, - { - "name": "contactInfo", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "AddressContactInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "name": "RawCustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null + } }, - { - "name": "additionalAddressInfo", - "description": null, - "args": [], - "type": { + "isDeprecated": true, + "deprecationReason": "Typed custom fields are no longer supported, please use customFieldsRaw instead." + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "CustomField", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalId", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BooleanField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DateField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DateTimeField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EnumField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LocalizedEnumField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LocalizedStringField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MoneyField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "NumberField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ReferenceField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "StringField", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TimeField", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "KeyReference", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "key", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Country", - "description": "[ISO 3166-1](http://en.wikipedia.org/wiki/ISO_3166-1) country code.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AddressContactInfo", - "description": null, - "fields": [ - { - "name": "phone", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Store", + "description": "[BETA] Stores allow defining different contexts for a project.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "mobile", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "email", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "fax", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Locale", - "description": "Locale is a scalar value represented as a string language tag.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Date", - "description": "DateTime is a scalar value that represents an ISO8601 formatted date.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CustomerGroup", - "description": "A customer can be a member in a customer group (e.g. reseller, gold member). A customer group can be used in price calculations with special prices being assigned to certain customer groups.", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeId", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": true, - "deprecationReason": "Use 'customerGroupRef' to fetch the reference." + } }, - { - "name": "version", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "languages", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Long", + "name": "Locale", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distributionChannelsRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distributionChannels", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyChannelsRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyChannels", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -4945,378 +6885,374 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "Channel", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" + } }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + } }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Channel", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": true, + "deprecationReason": "Use 'channelRef' to fetch the reference." + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roles", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "CustomField", + "kind": "ENUM", + "name": "ChannelRole", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RawCustomField", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Json", - "description": "Raw JSON value", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "Type", - "description": null, - "fields": [ - { - "name": "typeRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Reference", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TypeDefinition", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [] - }, - { - "kind": "OBJECT", - "name": "TypeDefinition", - "description": "Types define the structure of custom fields which can be attached to different entities throughout the platform.", - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "resourceTypeIds", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "geoLocation", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Geometry", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewRatingStatistics", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReviewRatingStatistics", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { @@ -5328,541 +7264,671 @@ "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fieldDefinitions", - "description": null, - "args": [ - { - "name": "includeNames", - "description": "The names of the custom field definitions to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null }, - { - "name": "excludeNames", - "description": "The names of the custom field definitions to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "FieldDefinition", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "ReviewTarget", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ReviewTarget", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Product", + "ofType": null + } + ] + }, + { + "kind": "ENUM", + "name": "ChannelRole", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "InventorySupply", + "description": "Role tells that this channel can be used to track inventory entries.Channels with this role can be treated as warehouses", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ProductDistribution", + "description": "Role tells that this channel can be used to expose products to a specific\ndistribution channel. It can be used by the cart to select a product price.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OrderExport", + "description": "Role tells that this channel can be used to track order export activities.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OrderImport", + "description": "Role tells that this channel can be used to track order import activities.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Primary", + "description": "This role can be combined with some other roles (e.g. with `InventorySupply`)\nto represent the fact that this particular channel is the primary/master\nchannel among the channels of the same type.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "Geometry", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Point", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "ReviewRatingStatistics", + "description": null, + "fields": [ + { + "name": "averageRating", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "highestRating", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedString", - "description": null, - "fields": [ - { - "name": "locale", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lowestRating", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ratingsDistribution", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LineItem", + "description": "A line item is a snapshot of a product variant at the time it was added to the cart.\n\nSince a product variant may change at any time, the ProductVariant data is copied into the field variant.\nThe relation to the Product is kept but the line item will not automatically update if the product variant changes.\nOn the cart, the line item can be updated manually. The productSlug refers to the current version of the product.\nIt can be used to link to the product. If the product has been deleted, the line item remains but refers to a\nnon-existent product and the productSlug is left empty.\n\nPlease also note that creating an order is impossible if the product or product\nvariant a line item relates to has been deleted.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FieldDefinition", - "description": "Field definitions describe custom fields and allow you to define some meta-information associated with the field.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productSlug", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "required", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputHint", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TextInputHint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TextInputHint", - "description": "UI hint telling what kind of edit control should be displayed for a text attribute.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "MultiLine", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SingleLine", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "FieldType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "BooleanType", + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productType", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "DateTimeType", + "name": "ProductTypeDefinition", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productTypeRef", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "DateType", + "name": "Reference", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variant", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "EnumType", + "name": "ProductVariant", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductPrice", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxedPrice", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "LocalizedEnumType", + "name": "TaxedItemPrice", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalPrice", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "LocalizedStringType", + "name": "Money", "ofType": null }, - { - "kind": "OBJECT", - "name": "MoneyType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ItemState", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxRate", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "NumberType", + "name": "TaxRate", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyChannel", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "ReferenceType", + "name": "Channel", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyChannelRef", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "SetType", + "name": "Reference", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distributionChannel", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "StringType", + "name": "Channel", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distributionChannelRef", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "TimeType", + "name": "Reference", "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "CustomFieldsType", - "description": null, - "fields": [ - { - "name": "typeRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TypeDefinition", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. For a typed alternative, have a look at `customFields`.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountedPricePerQuantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -5870,781 +7936,1055 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "DiscountedLineItemPriceForQuantity", "ofType": null } } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LineItemMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "LineItemPriceMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "CustomField", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "BooleanField", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "DateField", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "DateTimeField", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "EnumField", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "LocalizedEnumField", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "LocalizedStringField", - "ofType": null + } }, - { - "kind": "OBJECT", - "name": "MoneyField", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "NumberField", + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", "ofType": null }, - { + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "ReferenceField", + "name": "CustomFieldsType", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingDetails", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "StringField", + "name": "ItemShippingDetails", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inventoryMode", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "TimeField", + "name": "ItemShippingDetails", "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "KeyReference", - "description": null, - "fields": [ - { - "name": "typeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Store", - "description": "[BETA] Stores allow defining different contexts for a project.", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "INTERFACE", + "name": "CustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductTypeDefinition", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attributeDefinitions", + "description": null, + "args": [ + { + "name": "includeNames", + "description": "The names of the attribute definitions to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attribute definitions are returned.", + "type": { + "kind": "LIST", + "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "languages", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + { + "name": "excludeNames", + "description": "The names of the attribute definitions to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attribute definitions are returned.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LineItem", - "description": "A line item is a snapshot of a product variant at the time it was added to the cart.\n\nSince a product variant may change at any time, the ProductVariant data is copied into the field variant.\nThe relation to the Product is kept but the line item will not automatically update if the product variant changes.\nOn the cart, the line item can be updated manually. The productSlug refers to the current version of the product.\nIt can be used to link to the product. If the product has been deleted, the line item remains but refers to a\nnon-existent product and the productSlug is left empty.\n\nPlease also note that creating an order is impossible if the product or product variant a line item relates to has been deleted.", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "limit", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "offset", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productSlug", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttributeDefinitionResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "productType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductTypeDefinition", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "productTypeRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "variant", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductVariant", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "price", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttributeDefinitionResult", + "description": null, + "fields": [ + { + "name": "limit", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProductPrice", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AttributeDefinition", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxedPrice", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaxedItemPrice", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "totalPrice", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Money", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AttributeDefinition", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ItemState", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxRate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaxRate", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supplyChannel", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Channel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "supplyChannelRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isRequired", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "distributionChannel", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Channel", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attributeConstraint", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AttributeConstraint", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "distributionChannelRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputTip", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountedPricePerQuantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DiscountedLineItemPriceForQuantity", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "lineItemMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputHint", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TextInputHint", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isSearchable", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "LineItemMode", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "priceMode", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputTipAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "LineItemPriceMode", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "description": "(https://dev.commercetools.com/http-api-projects-productTypes.html#attributetype)[https://dev.commercetools.com/http-api-projects-productTypes.html#attributetype]", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BooleanAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DateAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DateTimeAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EnumAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LocalizableEnumAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LocalizableTextAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MoneyAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "NestedAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "NumberAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ReferenceAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TextAttributeDefinitionType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TimeAttributeDefinitionType", + "ofType": null + } + ] + }, + { + "kind": "ENUM", + "name": "AttributeConstraint", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "None", + "description": "No constraints are applied to the attribute", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Unique", + "description": "Attribute value should be different in each variant", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CombinationUnique", + "description": "A set of attributes, that have this constraint, should have different combinations in each variant", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SameForAll", + "description": "Attribute value should be the same in all variants", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductVariant", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sku", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "prices", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductPrice", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": "Returns a single price based on the price selection rules.", + "args": [ + { + "name": "currency", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "country", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "customerGroupId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "channelId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductPrice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "images", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Image", + "ofType": null + } } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assets", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -6652,662 +8992,822 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "Asset", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" - }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" - }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shippingDetails", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ItemShippingDetails", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "inventoryMode", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ItemShippingDetails", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "availability", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProductVariantAvailabilityWithChannels", + "ofType": null }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attributesRaw", + "description": "This field contains non-typed data. Consider using `attributes` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the attributes to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the attributes to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "CustomField", + "kind": "OBJECT", + "name": "RawProductAttribute", "ofType": null } } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attributes", + "description": "Product attributes", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ProductType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attributeList", + "description": "Product attributes are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the attributes to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductTypeDefinition", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + { + "name": "excludeNames", + "description": "The names of the attributes to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductPrice", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroup", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomerGroup", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroupRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channel", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channelRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validFrom", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validUntil", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discounted", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "DiscountedProductPriceValue", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tiers", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "attributeDefinitions", - "description": null, - "args": [ - { - "name": "includeNames", - "description": "The names of the attribute definitions to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attribute definitions are returned.", - "type": { - "kind": "LIST", + "kind": "OBJECT", + "name": "ProductPriceTier", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the attribute definitions to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attribute definitions are returned.", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "AttributeDefinitionResult", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttributeDefinitionResult", - "description": null, - "fields": [ - { - "name": "limit", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "name": "Type", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AttributeDefinition", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AttributeDefinition", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INTERFACE", - "name": "AttributeDefinitionType", + "name": "CustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "BaseMoney", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currencyCode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "centAmount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "label", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fractionDigits", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "HighPrecisionMoney", + "ofType": null + } + ] + }, + { + "kind": "SCALAR", + "name": "Currency", + "description": "Represents a currency. Currencies are identified by their [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm) currency codes.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiscountedProductPriceValue", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discount", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProductDiscount", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountRel", + "description": "Temporal. Will be renamed some time in the future. Please use 'discount'.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProductDiscount", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Will be removed in the future. Please use 'discount'." + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductDiscount", + "description": "A product price can be discounted in two ways:\n\n* with a relative or an absolute product discount, which will be automatically\napplied to all prices in a product that match a discount predicate.\n A relative discount reduces the matching price by a fraction (for example 10 %\noff). An absolute discount reduces the matching price by a fixed amount (for\nexample 10€ off). If more than one product discount matches a price, the\ndiscount sort order determines which one will be applied.\n* with an external product discount, which can then be used to explicitly set a\ndiscounted value on a particular product price.\n\nThe discounted price is stored in the discounted field of the Product Price.\n\nNote that when a discount is created, updated or removed it can take up to 15\nminutes to update all the prices with the discounts.\n\nThe maximum number of ProductDiscounts that can be active at the same time is **200**.", + "fields": [ + { + "name": "predicate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validFrom", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "isRequired", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validUntil", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "attributeConstraint", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AttributeConstraint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - { - "name": "inputTip", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isValid", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "inputHint", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TextInputHint", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "isSearchable", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "inputTipAllLocales", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "referenceRefs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -7315,198 +9815,400 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "Reference", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "description": "(https://dev.commercetools.com/http-api-projects-productTypes.html#attributetype)[https://dev.commercetools.com/http-api-projects-productTypes.html#attributetype]", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "BooleanAttributeDefinitionType", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "DateAttributeDefinitionType", - "ofType": null + } }, - { - "kind": "OBJECT", - "name": "DateTimeAttributeDefinitionType", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ProductDiscountValue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "kind": "OBJECT", - "name": "EnumAttributeDefinitionType", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "kind": "OBJECT", - "name": "LocalizableEnumAttributeDefinitionType", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - { - "kind": "OBJECT", - "name": "LocalizableTextAttributeDefinitionType", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "MoneyAttributeDefinitionType", + "name": "Initiator", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "NestedAttributeDefinitionType", + "name": "Initiator", "ofType": null }, - { - "kind": "OBJECT", - "name": "NumberAttributeDefinitionType", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ReferenceAttributeDefinitionType", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SetAttributeDefinitionType", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TextAttributeDefinitionType", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "TimeAttributeDefinitionType", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ProductDiscountValue", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AbsoluteDiscountValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ExternalDiscountValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RelativeDiscountValue", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "ProductPriceTier", + "description": null, + "fields": [ + { + "name": "minimumQuantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Image", + "description": null, + "fields": [ + { + "name": "url", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dimensions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Dimensions", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } - ] - }, - { - "kind": "ENUM", - "name": "AttributeConstraint", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "None", - "description": "No constraints are applied to the attribute", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Unique", - "description": "Attribute value should be different in each variant", - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "CombinationUnique", - "description": "A set of attributes, that have this constraint, should have different combinations in each variant", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SameForAll", - "description": "Attribute value should be the same in all variants", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductVariant", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Dimensions", + "description": null, + "fields": [ + { + "name": "width", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "key", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "sku", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Asset", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "prices", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sources", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -7514,476 +10216,615 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ProductPrice", + "name": "AssetSource", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "price", - "description": "Returns a single price based on the price selection rules.", - "args": [ - { - "name": "currency", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Currency", + "name": "Locale", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "country", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Country", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "customerGroupId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "channelId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductPrice", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "images", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Image", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "assets", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tags", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Asset", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "availability", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductVariantAvailabilityWithChannels", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "attributesRaw", - "description": "This field contains non-typed data. Consider using `attributes` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the attributes to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null }, - { - "name": "excludeNames", - "description": "The names of the attributes to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "RawProductAttribute", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "attributes", - "description": "Product attributes", - "args": [], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ProductType", + "kind": "OBJECT", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "attributeList", - "description": "Product attributes are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the attributes to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the attributes to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "Attribute", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductPrice", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INTERFACE", - "name": "BaseMoney", + "name": "CustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "country", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AssetSource", + "description": null, + "fields": [ + { + "name": "uri", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Country", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customerGroup", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customerGroupRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "channel", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Channel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dimensions", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "AssetDimensions", + "ofType": null }, - { - "name": "channelRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "contentType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "validFrom", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AssetDimensions", + "description": null, + "fields": [ + { + "name": "width", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "validUntil", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "discounted", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DiscountedProductPriceValue", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductVariantAvailabilityWithChannels", + "description": null, + "fields": [ + { + "name": "noChannel", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProductVariantAvailability", + "ofType": null }, - { - "name": "tiers", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channels", + "description": null, + "args": [ + { + "name": "includeChannelIds", + "description": "The IDs of channels to include.\n\nIf neither `includeChannelIds` nor `excludeChannelIds` are provided, then all channels are returned.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProductPriceTier", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "excludeChannelIds", + "description": "The IDs of channels to exclude.\n\nIf neither `includeChannelIds` nor `excludeChannelIds` are provided, then all channels are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductVariantAvailabilitiesResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductVariantAvailability", + "description": "Product variant availability", + "fields": [ + { + "name": "isOnStock", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "restockableInDays", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "availableQuantity", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductVariantAvailabilitiesResult", + "description": "Product variant availabilities", + "fields": [ + { + "name": "limit", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -7991,397 +10832,1073 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "ProductVariantAvailabilityWithChannel", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" + } }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductVariantAvailabilityWithChannel", + "description": null, + "fields": [ + { + "name": "channelRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channel", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null }, - { - "name": "custom", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "availability", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "CustomFieldsType", + "name": "ProductVariantAvailability", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RawProductAttribute", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attributeDefinition", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "AttributeDefinition", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ProductType", + "description": null, + "fields": [ + { + "name": "productTypeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [] + }, + { + "kind": "INTERFACE", + "name": "Attribute", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "BooleanAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DateAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DateTimeAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EnumAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LocalizedEnumAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LocalizedStringAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MoneyAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "NumberAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ReferenceAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "StringAttribute", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TimeAttribute", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "TaxedItemPrice", + "description": null, + "fields": [ + { + "name": "totalNet", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalGross", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Money", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currencyCode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "centAmount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fractionDigits", + "description": "For the `Money` it equals to the default number of fraction digits used with the currency.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ItemState", + "description": null, + "fields": [ + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stateRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "State", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "State", + "description": "[State](http://dev.commercetools.com/http-api-projects-states.html)", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "StateType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "roles", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "BaseMoney", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "ENUM", + "name": "StateRole", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "currencyCode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Currency", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "centAmount", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "fractionDigits", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Money", + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "HighPrecisionMoney", - "ofType": null - } - ] - }, - { - "kind": "SCALAR", - "name": "Currency", - "description": "Represents a currency. Currencies are identified by their [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm) currency codes.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Channel", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "typeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": true, - "deprecationReason": "Use 'channelRef' to fetch the reference." + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "builtIn", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - { - "name": "version", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transitionsRef", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "OBJECT", + "name": "Reference", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "key", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transitions", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "State", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roles", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ChannelRole", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initial", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "StateType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "OrderState", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ProductState", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ReviewState", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PaymentState", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LineItemState", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "StateRole", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Return", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ReviewIncludedInStatistics", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TaxRate", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "includedInPrice", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subRates", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "SubRate", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SubRate", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiscountedLineItemPriceForQuantity", + "description": null, + "fields": [ + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountedPrice", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiscountedLineItemPrice", + "ofType": null + } }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiscountedLineItemPrice", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "includedDiscounts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -8389,124 +11906,287 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "DiscountedLineItemPortion", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "address", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiscountedLineItemPortion", + "description": null, + "fields": [ + { + "name": "discount", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CartDiscount", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Address", + "name": "Reference", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "geoLocation", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountedAmount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INTERFACE", - "name": "Geometry", + "name": "BaseMoney", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartDiscount", + "description": "Cart discounts are recalculated every time LineItems or CustomLineItems are\nadded or removed from the Cart or an order is created from the cart.\n\nThe number of active cart discounts that do not require a discount code\n(isActive=true and requiresDiscountCode=false) is limited to 100.", + "fields": [ + { + "name": "cartPredicate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validFrom", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validUntil", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stackingMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "StackingMode", + "ofType": null + } }, - { - "name": "reviewRatingStatistics", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReviewRatingStatistics", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "requiresDiscountCode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sortOrder", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Locale", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Locale", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -8514,556 +12194,509 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "LocalizedString", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" - }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" - }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ChannelRole", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "InventorySupply", - "description": "Role tells that this channel can be used to track inventory entries.Channels with this role can be treated as warehouses", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ProductDistribution", - "description": "Role tells that this channel can be used to expose products to a specific distribution channel. It can be used by the cart to select a product price.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OrderExport", - "description": "Role tells that this channel can be used to track order export activities.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OrderImport", - "description": "Role tells that this channel can be used to track order import activities.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Primary", - "description": "This role can be combined with some other roles (e.g. with `InventorySupply`) to represent the fact that this particular channel is the primary/master channel among the channels of the same type.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "Geometry", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Point", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "ReviewRatingStatistics", - "description": null, - "fields": [ - { - "name": "averageRating", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "referenceRefs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "highestRating", - "description": null, - "args": [], - "type": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lowestRating", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null }, - { - "name": "ratingsDistribution", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DiscountedProductPriceValue", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "BaseMoney", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "CartDiscountValue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "target", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "CartDiscountTarget", + "ofType": null }, - { - "name": "discount", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductDiscount", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountRel", - "description": "Temporal. Will be renamed some time in the future. Please use 'discount'.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductDiscount", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Will be removed in the future. Please use 'discount'." - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductDiscount", - "description": "\nA product price can be discounted in two ways:\n\n* with a relative or an absolute product discount, which will be automatically applied to all prices in a product that match a discount predicate.\n A relative discount reduces the matching price by a fraction (for example 10 % off). An absolute discount reduces the matching price by a fixed amount (for example 10€ off). If more than one product discount matches a price, the discount sort order determines which one will be applied.\n* with an external product discount, which can then be used to explicitly set a discounted value on a particular product price.\n\nThe discounted price is stored in the discounted field of the Product Price.\n\nNote that when a discount is created, updated or removed it can take up to 15 minutes to update all the prices with the discounts.\n\nThe maximum number of ProductDiscounts that can be active at the same time is **200**.\n ", - "fields": [ - { - "name": "predicate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "validFrom", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "validUntil", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isActive", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isValid", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sortOrder", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "key", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null }, - { - "name": "referenceRefs", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Reference", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "StackingMode", + "description": "Describes how this discount interacts with other discounts", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "StopAfterThisDiscount", + "description": "Don’t apply any more matching discounts after this one.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Stacking", + "description": "Default. Continue applying other matching discounts after applying this one.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "CartDiscountValue", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AbsoluteDiscountValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GiftLineItemValue", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RelativeDiscountValue", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "CartDiscountTarget", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CustomLineItemsTarget", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LineItemsTarget", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MultiBuyCustomLineItemsTarget", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "MultiBuyLineItemsTarget", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ShippingTarget", + "ofType": null + } + ] + }, + { + "kind": "ENUM", + "name": "LineItemMode", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "GiftLineItem", + "description": "The line item was added automatically, because a discount has added a free gift to the cart.\nThe quantity can not be increased, and it won’t be merged when the same product variant is added.\nIf the gift is removed, an entry is added to the \"refusedGifts\" array and the discount won’t be applied again\nto the cart. The price can not be changed externally.\nAll other updates, such as the ones related to custom fields, can be used.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Standard", + "description": "The line item was added during cart creation or with the update action addLineItem. Its quantity can be\nchanged without restrictions.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LineItemPriceMode", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Platform", + "description": "The price is selected form the product variant. This is the default mode.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ExternalPrice", + "description": "The line item price was set externally. Cart discounts can apply to line items\nwith this price mode. All update actions that change the quantity of a line\nitem with this price mode require the externalPrice field to be given.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ExternalTotal", + "description": "The line item price with the total was set externally.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ItemShippingDetails", + "description": null, + "fields": [ + { + "name": "targets", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -9071,482 +12704,511 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "ItemShippingTarget", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ProductDiscountValue", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "valid", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ItemShippingTarget", + "description": null, + "fields": [ + { + "name": "addressKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomLineItem", + "description": "A custom line item is a generic item that can be added to the cart but is not\nbound to a product. You can use it for discounts (negative money), vouchers,\ncomplex cart rules, additional services or fees. You control the lifecycle of this item.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "money", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalPrice", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Initiator", + "name": "Money", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ProductDiscountValue", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ItemState", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategory", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "AbsoluteDiscountValue", + "name": "TaxCategory", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategoryRef", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "ExternalDiscountValue", + "name": "Reference", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxRate", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "RelativeDiscountValue", + "name": "TaxRate", "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "ProductPriceTier", - "description": null, - "fields": [ - { - "name": "minimumQuantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountedPricePerQuantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "BaseMoney", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Image", - "description": null, - "fields": [ - { - "name": "url", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiscountedLineItemPriceForQuantity", + "ofType": null + } } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dimensions", - "description": null, - "args": [], - "type": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Dimensions", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Dimensions", - "description": null, - "fields": [ - { - "name": "width", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null }, - { - "name": "height", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Asset", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingDetails", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ItemShippingDetails", + "ofType": null }, - { - "name": "sources", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "AssetSource", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TaxCategory", + "description": "Tax Categories define how products are to be taxed in different countries.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rates", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -9554,80 +13216,188 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "TaxRate", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": true, + "deprecationReason": "Use 'taxCategoryRef' to fetch the reference." + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TaxedPrice", + "description": null, + "fields": [ + { + "name": "totalNet", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalGross", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxPortions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -9635,963 +13405,1182 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "TaxPortion", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" + } }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TaxPortion", + "description": "Represents the portions that sum up to the totalGross field of a TaxedPrice. The portions are calculated\nfrom the TaxRates. If a tax rate has SubRates, they are used and can be identified by name. Tax portions\nfrom line items that have the same rate and name will be accumulated to the same tax portion.", + "fields": [ + { + "name": "rate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "custom", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "InventoryMode", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "None", + "description": "Adding items to cart and ordering is independent of inventory. No inventory checks or modifications.\nThis is the default mode for a new cart.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ReserveOnOrder", + "description": "Creating an order will fail with an OutOfStock error if an unavailable line item exists. Line items in the cart\nare only reserved for the duration of the ordering transaction.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TrackOnly", + "description": "Orders are tracked on inventory. That means, ordering a LineItem will decrement the available quantity on the\nrespective InventoryEntry. Creating an order will succeed even if the line item’s available quantity is zero or\nnegative. But creating an order will fail with an OutOfStock error if no matching inventory entry exists for a\nline item.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TaxMode", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Disabled", + "description": "No taxes are added to the cart.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ExternalAmount", + "description": "The tax amounts and the tax rates as well as the tax portions are set externally per ExternalTaxAmountDraft.\nA cart with this tax mode can only be ordered if the cart itself and all line items, all custom line items and\nthe shipping method have an external tax amount and rate set", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "External", + "description": "The tax rates are set externally per ExternalTaxRateDraft. A cart with this tax mode can only be ordered if all\nline items, all custom line items and the shipping method have an external tax rate set. The totalNet and\ntotalGross as well as the taxPortions fields are calculated by the platform according to the taxRoundingMode.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Platform", + "description": "The tax rates are selected by the platform from the TaxCategories based on the cart shipping address.\nThe totalNet and totalGross as well as the taxPortions fields are calculated by the platform according to the\ntaxRoundingMode.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "RoundingMode", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "HalfDown", + "description": "[Round half down](https://en.wikipedia.org/wiki/Rounding#Round_half_down).\nRounding mode used by, e.g., [Avalara Sales TaxII](https://help.avalara.com/kb/001/How_does_Rounding_with_SalesTaxII_work%3F)", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "HalfUp", + "description": "[Round half up](https://en.wikipedia.org/wiki/Rounding#Round_half_up)", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "HalfEven", + "description": "[Round half to even](https://en.wikipedia.org/wiki/Rounding#Round_half_to_even).\nDefault rounding mode as used in IEEE 754 computing functions and operators.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TaxCalculationMode", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "UnitPriceLevel", + "description": "This calculation mode calculates the taxes on the unit price before multiplying with the quantity.\nE.g. `($1.08 * 1.19 = $1.2852 -> $1.29 rounded) * 3 = $3.87`", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LineItemLevel", + "description": "Default. This calculation mode calculates the taxes after the unit price is multiplied with the quantity.\nE.g. `($1.08 * 3 = $3.24) * 1.19 = $3.8556 -> $3.86 rounded`", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingInfo", + "description": null, + "fields": [ + { + "name": "shippingMethodName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "CustomFieldsType", + "name": "Money", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingRate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShippingRate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TaxRate", + "ofType": null }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deliveries", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AssetSource", - "description": null, - "fields": [ - { - "name": "uri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "OBJECT", + "name": "Delivery", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountedPrice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "DiscountedLineItemPrice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxedPrice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TaxedItemPrice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethodState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ShippingMethodState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethod", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethodRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategory", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TaxCategory", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategoryRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null }, - { - "name": "dimensions", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingRate", + "description": "Shipping Rate", + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "AssetDimensions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "contentType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AssetDimensions", - "description": null, - "fields": [ - { - "name": "width", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "name": "Money", + "ofType": null + } }, - { - "name": "height", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "freeAbove", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isMatching", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tiers", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ShippingRatePriceTier", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductVariantAvailabilityWithChannels", - "description": null, - "fields": [ - { - "name": "noChannel", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductVariantAvailability", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ShippingRatePriceTier", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ShippingRateCartClassificationPriceTier", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ShippingRateCartScorePriceTier", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ShippingRateCartValuePriceTier", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Delivery", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "channels", - "description": null, - "args": [ - { - "name": "includeChannelIds", - "description": "The IDs of channels to include.\n\nIf neither `includeChannelIds` nor `excludeChannelIds` are provided, then all channels are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeChannelIds", - "description": "The IDs of channels to exclude.\n\nIf neither `includeChannelIds` nor `excludeChannelIds` are provided, then all channels are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProductVariantAvailabilitiesResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductVariantAvailability", - "description": "Product variant availability", - "fields": [ - { - "name": "isOnStock", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeliveryItem", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parcels", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Parcel", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "restockableInDays", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeliveryItem", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "availableQuantity", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductVariantAvailabilitiesResult", - "description": "Product variant availabilities", - "fields": [ - { - "name": "limit", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Parcel", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "offset", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "measurements", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ParcelMeasurements", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingData", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TrackingData", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductVariantAvailabilityWithChannel", - "ofType": null - } + "kind": "OBJECT", + "name": "DeliveryItem", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductVariantAvailabilityWithChannel", - "description": null, - "fields": [ - { - "name": "channelRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channel", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Channel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "availability", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductVariantAvailability", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RawProductAttribute", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ParcelMeasurements", + "description": null, + "fields": [ + { + "name": "heightInMillimeter", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "attributeDefinition", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "AttributeDefinition", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ProductType", - "description": null, - "fields": [ - { - "name": "productTypeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [] - }, - { - "kind": "INTERFACE", - "name": "Attribute", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "BooleanAttribute", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lengthInMillimeter", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, - { - "kind": "OBJECT", - "name": "DateAttribute", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "widthInMillimeter", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, - { - "kind": "OBJECT", - "name": "DateTimeAttribute", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "weightInGram", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null }, - { - "kind": "OBJECT", - "name": "EnumAttribute", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TrackingData", + "description": null, + "fields": [ + { + "name": "trackingId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "LocalizedEnumAttribute", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carrier", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "LocalizedStringAttribute", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "provider", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "MoneyAttribute", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "providerTransaction", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "NumberAttribute", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isReturn", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ShippingMethodState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "MatchesCart", + "description": "Either there is no predicate defined for the ShippingMethod or the given predicate matches the cart", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DoesNotMatchCart", + "description": "The ShippingMethod predicate does not match the cart. Ordering this cart will\nfail with error ShippingMethodDoesNotMatchCart", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingMethod", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "ReferenceAttribute", + "isDeprecated": true, + "deprecationReason": "Use localizedDescription" + }, + { + "name": "zoneRates", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ZoneRate", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDefault", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "predicate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "StringAttribute", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategoryRef", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "TimeAttribute", + "name": "Reference", "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "TaxedItemPrice", - "description": null, - "fields": [ - { - "name": "totalNet", - "description": null, - "args": [], - "type": { + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localizedDescriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Money", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "totalGross", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Money", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "currencyCode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "centAmount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fractionDigits", - "description": "For the `Money` it equals to the default number of fraction digits used with the currency.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "BaseMoney", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ItemState", - "description": null, - "fields": [ - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "State", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "State", - "description": "[State](http://dev.commercetools.com/http-api-projects-states.html)", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localizedDescription", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "StateType", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roles", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "StateRole", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategory", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TaxCategory", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ZoneRate", + "description": null, + "fields": [ + { + "name": "shippingRates", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -10599,60 +14588,98 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "ShippingRate", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zoneRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zone", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Zone", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Zone", + "description": "Zones allow defining ShippingRates for specific Locations.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -10660,846 +14687,1731 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "Location", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "builtIn", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "transitionsRef", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "transitions", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Location", + "description": null, + "fields": [ + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiscountCodeInfo", + "description": null, + "fields": [ + { + "name": "discountCodeRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "DiscountCodeState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountCode", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "DiscountCode", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "DiscountCodeState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ApplicationStoppedByPreviousDiscount", + "description": "The discount code is active and none of the discounts were applied because the\ndiscount application was stopped by one discount that has the StackingMode of\nStopAfterThisDiscount defined", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NotValid", + "description": "The discount code is not valid or it does not contain any valid cart\ndiscounts. Validity is determined based on the validFrom and validUntil dates", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MaxApplicationReached", + "description": "maxApplications or maxApplicationsPerCustomer for discountCode has been reached.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MatchesCart", + "description": "The discount code is active and it contains at least one active and valid\nCartDiscount. The discount code cartPredicate matches the cart and at least\none of the contained active discount’s cart predicates matches the cart.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "DoesNotMatchCart", + "description": "The discount code is active and it contains at least one active and valid\nCartDiscount. But its cart predicate does not match the cart or none of the\ncontained active discount’s cart predicates match the cart", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NotActive", + "description": "The discount code is not active or it does not contain any active cart discounts.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiscountCode", + "description": "With discount codes it is possible to give specific cart discounts to an\neligible amount of users. They are defined by a string value which can be added\nto a cart so that specific cart discounts can be applied to the cart.", + "fields": [ + { + "name": "code", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxApplications", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxApplicationsPerCustomer", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cartPredicate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "applicationVersion", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validFrom", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validUntil", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groups", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "State", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "initial", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "StateType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "OrderState", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ProductState", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ReviewState", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PaymentState", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LineItemState", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "StateRole", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Return", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ReviewIncludedInStatistics", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaxRate", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "includedInPrice", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "country", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Country", + "name": "Locale", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subRates", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SubRate", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SubRate", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "amount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cartDiscounts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartDiscount", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DiscountedLineItemPriceForQuantity", - "description": null, - "fields": [ - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "referenceRefs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "discountedPrice", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "DiscountedLineItemPrice", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DiscountedLineItemPrice", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "BaseMoney", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "includedDiscounts", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DiscountedLineItemPortion", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DiscountedLineItemPortion", - "description": null, - "fields": [ - { - "name": "discount", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CartDiscount", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountRef", - "description": null, - "args": [], - "type": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "Reference", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "discountedAmount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "BaseMoney", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CartDiscount", - "description": "\nCart discounts are recalculated every time LineItems or CustomLineItems are added or removed from the Cart or an order is created from the cart.\n\nThe number of active cart discounts that do not require a discount code (isActive=true and requiresDiscountCode=false) is limited to 100.\n ", - "fields": [ - { - "name": "cartPredicate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "applicationCount", + "description": "How many times this discount code was applied (only applications that were part of a successful checkout are considered)", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cartDiscountRefs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "validFrom", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "validUntil", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null }, - { - "name": "stackingMode", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "StackingMode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isActive", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PaymentInfo", + "description": null, + "fields": [ + { + "name": "payments", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requiresDiscountCode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentRefs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "sortOrder", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Payment", + "description": "Payments hold information about the current state of receiving and/or refunding money.\n[documentation](https://docs.commercetools.com/http-api-projects-payments)", + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anonymousId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interfaceId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountPlanned", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountAuthorized", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "https://docs.commercetools.com/release-notes.html#releases-2017-09-29-payment-api-beta-changes" + }, + { + "name": "authorizedUntil", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "https://docs.commercetools.com/release-notes.html#releases-2017-09-29-payment-api-beta-changes" + }, + { + "name": "amountPaid", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "https://docs.commercetools.com/release-notes.html#releases-2017-09-29-payment-api-beta-changes" + }, + { + "name": "amountRefunded", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "https://docs.commercetools.com/release-notes.html#releases-2017-09-29-payment-api-beta-changes" + }, + { + "name": "paymentMethodInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PaymentMethodInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentStatus", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PaymentStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interfaceInteractionsRaw", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InterfaceInteractionsRawResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RawCustomField", + "ofType": null } - ], - "type": { + } + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "referenceRefs", - "description": null, - "args": [], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PaymentMethodInfo", + "description": null, + "fields": [ + { + "name": "paymentInterface", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "method", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Reference", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PaymentStatus", + "description": null, + "fields": [ + { + "name": "interfaceCode", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interfaceText", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stateRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "State", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Transaction", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "TransactionType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interactionId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransactionState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TransactionType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Chargeback", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Refund", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Charge", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CancelAuthorization", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Authorization", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TransactionState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Failure", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Success", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Pending", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Initial", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InterfaceInteractionsRawResult", + "description": null, + "fields": [ + { + "name": "limit", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -11507,764 +16419,1020 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "InterfaceInteractionsRaw", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" - }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + } }, - { - "name": "custom", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InterfaceInteractionsRaw", + "description": null, + "fields": [ + { + "name": "typeRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "CustomFieldsType", + "name": "Reference", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "CartDiscountValue", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target", - "description": null, - "args": [], - "type": { - "kind": "INTERFACE", - "name": "CartDiscountTarget", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TypeDefinition", + "ofType": null }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fields", + "description": null, + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "CustomField", + "kind": "OBJECT", + "name": "RawCustomField", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "StackingMode", - "description": "Describes how this discount interacts with other discounts", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "StopAfterThisDiscount", - "description": "Don’t apply any more matching discounts after this one.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Stacking", - "description": "Default. Continue applying other matching discounts after applying this one.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "CartDiscountValue", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ShippingRateInput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ClassificationShippingRateInput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ScoreShippingRateInput", + "ofType": null + } + ] + }, + { + "kind": "ENUM", + "name": "CartOrigin", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Merchant", + "description": "The cart was created by the merchant on behalf of the customer", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Customer", + "description": "The cart was created by the customer. This is the default value", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CartState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Ordered", + "description": "The cart was ordered. No further operations on the cart are allowed.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Merged", + "description": "Anonymous cart whose content was merged into a customers cart on signin. No further operations on the cart are allowed.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Active", + "description": "The cart can be updated and ordered. It is the default state.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "AbsoluteDiscountValue", - "ofType": null + } }, - { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "CustomerActiveCartInterface", + "description": "A field to access a customer's active cart.", + "fields": [ + { + "name": "customerActiveCart", + "description": null, + "args": [ + { + "name": "customerId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { "kind": "OBJECT", - "name": "GiftLineItemValue", + "name": "Cart", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InStore", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "OrderQueryInterface", + "description": "Fields to access orders. Includes direct access to a single order and searching for orders.", + "fields": [ + { + "name": "order", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { "kind": "OBJECT", - "name": "RelativeDiscountValue", + "name": "Order", "ofType": null - } - ] - }, - { - "kind": "INTERFACE", - "name": "CartDiscountTarget", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orders", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CustomLineItemsTarget", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "LineItemsTarget", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "MultiBuyCustomLineItemsTarget", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "MultiBuyLineItemsTarget", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ShippingTarget", - "ofType": null - } - ] - }, - { - "kind": "ENUM", - "name": "LineItemMode", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "GiftLineItem", - "description": "The line item was added automatically, because a discount has added a free gift to the cart.\nThe quantity can not be increased, and it won’t be merged when the same product variant is added.\nIf the gift is removed, an entry is added to the \"refusedGifts\" array and the discount won’t be applied again\nto the cart. The price can not be changed externally.\nAll other updates, such as the ones related to custom fields, can be used.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Standard", - "description": "The line item was added during cart creation or with the update action addLineItem. Its quantity can be\nchanged without restrictions.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LineItemPriceMode", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Platform", - "description": "The price is selected form the product variant. This is the default mode.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ExternalPrice", - "description": "The line item price was set externally. Cart discounts can apply to line items with this price mode. All update actions that change the quantity of a line item with this price mode require the externalPrice field to be given.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ExternalTotal", - "description": "The line item price with the total was set externally.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ItemShippingDetails", - "description": null, - "fields": [ - { - "name": "targets", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ItemShippingTarget", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "valid", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "limit", + "description": null, + "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ItemShippingTarget", - "description": null, - "fields": [ - { - "name": "addressKey", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "offset", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InStore", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Order", + "description": "An order can be created from a cart, usually after a checkout process has been completed.\n[documentation](https://docs.commercetools.com/http-api-projects-orders.html)", + "fields": [ + { + "name": "customerId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CustomLineItem", - "description": "A custom line item is a generic item that can be added to the cart but is not bound to a product. You can use it for discounts (negative money), vouchers, complex cart rules, additional services or fees. You control the lifecycle of this item.", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerEmail", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anonymousId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItems", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } + "kind": "OBJECT", + "name": "LineItem", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "money", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItems", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "BaseMoney", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomLineItem", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalPrice", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } }, - { - "name": "totalPrice", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxedPrice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TaxedPrice", + "ofType": null }, - { - "name": "slug", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingAddress", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "billingAddress", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inventoryMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "InventoryMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxRoundingMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RoundingMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCalculationMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxCalculationMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroup", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomerGroup", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroupRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingInfo", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ShippingInfo", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountCodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiscountCodeInfo", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refusedGifts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ItemState", - "ofType": null - } + "kind": "OBJECT", + "name": "CartDiscount", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refusedGiftsRefs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } + } + } }, - { - "name": "taxCategory", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaxCategory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentInfo", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "PaymentInfo", + "ofType": null }, - { - "name": "taxCategoryRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null }, - { - "name": "taxRate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaxRate", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingRateInput", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "ShippingRateInput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "origin", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CartOrigin", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "discountedPricePerQuantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "storeRef", + "description": "beta feature", + "args": [], + "type": { + "kind": "OBJECT", + "name": "KeyReference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "store", + "description": "beta feature", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Store", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "itemShippingAddresses", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DiscountedLineItemPriceForQuantity", - "ofType": null - } + "kind": "OBJECT", + "name": "Address", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "completedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrderState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stateRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "State", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipmentState", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "ShipmentState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentState", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "PaymentState", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "syncInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SyncInfo", + "ofType": null + } } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -12272,2085 +17440,2160 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "ReturnInfo", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" + } }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastMessageSequenceNumber", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + } }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cartRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null }, - { - "name": "shippingDetails", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ItemShippingDetails", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cart", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaxCategory", - "description": "Tax Categories define how products are to be taxed in different countries.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "rates", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TaxRate", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "typeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": true, - "deprecationReason": "Use 'taxCategoryRef' to fetch the reference." - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaxedPrice", - "description": null, - "fields": [ - { - "name": "totalNet", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalGross", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxPortions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TaxPortion", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaxPortion", - "description": "Represents the portions that sum up to the totalGross field of a TaxedPrice. The portions are calculated\nfrom the TaxRates. If a tax rate has SubRates, they are used and can be identified by name. Tax portions\nfrom line items that have the same rate and name will be accumulated to the same tax portion.", - "fields": [ - { - "name": "rate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "InventoryMode", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "None", - "description": "Adding items to cart and ordering is independent of inventory. No inventory checks or modifications.\nThis is the default mode for a new cart.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ReserveOnOrder", - "description": "Creating an order will fail with an OutOfStock error if an unavailable line item exists. Line items in the cart\nare only reserved for the duration of the ordering transaction.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TrackOnly", - "description": "Orders are tracked on inventory. That means, ordering a LineItem will decrement the available quantity on the\nrespective InventoryEntry. Creating an order will succeed even if the line item’s available quantity is zero or\nnegative. But creating an order will fail with an OutOfStock error if no matching inventory entry exists for a\nline item.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TaxMode", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Disabled", - "description": "No taxes are added to the cart.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ExternalAmount", - "description": "The tax amounts and the tax rates as well as the tax portions are set externally per ExternalTaxAmountDraft.\nA cart with this tax mode can only be ordered if the cart itself and all line items, all custom line items and\nthe shipping method have an external tax amount and rate set", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "External", - "description": "The tax rates are set externally per ExternalTaxRateDraft. A cart with this tax mode can only be ordered if all\nline items, all custom line items and the shipping method have an external tax rate set. The totalNet and\ntotalGross as well as the taxPortions fields are calculated by the platform according to the taxRoundingMode.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Platform", - "description": "The tax rates are selected by the platform from the TaxCategories based on the cart shipping address.\nThe totalNet and totalGross as well as the taxPortions fields are calculated by the platform according to the\ntaxRoundingMode.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "RoundingMode", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "HalfDown", - "description": "[Round half down](https://en.wikipedia.org/wiki/Rounding#Round_half_down). Rounding mode used by, e.g., [Avalara Sales TaxII](https://help.avalara.com/kb/001/How_does_Rounding_with_SalesTaxII_work%3F)", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HalfUp", - "description": "[Round half up](https://en.wikipedia.org/wiki/Rounding#Round_half_up)", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HalfEven", - "description": "[Round half to even](https://en.wikipedia.org/wiki/Rounding#Round_half_to_even). Default rounding mode as used in IEEE 754 computing functions and operators.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TaxCalculationMode", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "UnitPriceLevel", - "description": "This calculation mode calculates the taxes on the unit price before multiplying with the quantity.\nE.g. `($1.08 * 1.19 = $1.2852 -> $1.29 rounded) * 3 = $3.87`", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LineItemLevel", - "description": "Default. This calculation mode calculates the taxes after the unit price is multiplied with the quantity.\nE.g. `($1.08 * 3 = $3.24) * 1.19 = $3.8556 -> $3.86 rounded`", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingInfo", - "description": null, - "fields": [ - { - "name": "shippingMethodName", - "description": null, - "args": [], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "OrderState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Confirmed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Cancelled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Complete", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Open", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ShipmentState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Delayed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Backorder", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Partial", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Pending", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Ready", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Shipped", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PaymentState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Paid", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CreditOwed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Pending", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Failed", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "BalanceDue", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SyncInfo", + "description": "Stores information about order synchronization activities (like export or import).", + "fields": [ + { + "name": "channelRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } }, - { - "name": "price", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channel", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null }, - { - "name": "shippingRate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShippingRate", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "taxRate", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaxRate", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "syncedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deliveries", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReturnInfo", + "description": "Stores information about returns connected to this order.", + "fields": [ + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Delivery", - "ofType": null - } + "kind": "INTERFACE", + "name": "ReturnItem", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnTrackingId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "discountedPrice", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DiscountedLineItemPrice", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "taxedPrice", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaxedItemPrice", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ReturnItem", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shippingMethodState", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ShippingMethodState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shippingMethod", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ShippingMethod", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shippingMethodRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "taxCategory", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaxCategory", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipmentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnShipmentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnPaymentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "taxCategoryRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingRate", - "description": "Shipping Rate", - "fields": [ - { - "name": "price", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "freeAbove", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Money", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CustomLineItemReturnItem", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "LineItemReturnItem", + "ofType": null + } + ] + }, + { + "kind": "ENUM", + "name": "ReturnShipmentState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Unusable", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "BackInStock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Returned", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Advised", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ReturnPaymentState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "NotRefunded", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Refunded", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Initial", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NonRefundable", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrderQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "isMatching", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "tiers", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "ShippingRatePriceTier", - "ofType": null - } + "kind": "OBJECT", + "name": "Order", + "ofType": null } } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "CustomerQueryInterface", + "description": "Fields to access customer accounts. Includes direct access to a single customer and searching for customers.", + "fields": [ + { + "name": "customer", + "description": null, + "args": [ + { + "name": "emailToken", + "description": "Queries a customer with specified email token", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ShippingRatePriceTier", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "passwordToken", + "description": "Queries a customer with specified password token", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "ShippingRateCartClassificationPriceTier", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ShippingRateCartScorePriceTier", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ShippingRateCartValuePriceTier", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "Delivery", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customers", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "items", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeliveryItem", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomerQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InStore", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "CustomerQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "parcels", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Parcel", - "ofType": null - } + "kind": "OBJECT", + "name": "Customer", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "address", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Address", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeliveryItem", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ShoppingListQueryInterface", + "description": "Fields to access shopping lists. Includes direct access to a single list and searching for shopping lists.", + "fields": [ + { + "name": "shoppingList", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Parcel", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingLists", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "measurements", - "description": null, - "args": [], - "type": { + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "ParcelMeasurements", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "name": "ShoppingListQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Query", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "ShoppingList", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "trackingData", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TrackingData", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "items", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeliveryItem", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ParcelMeasurements", - "description": null, - "fields": [ - { - "name": "heightInMillimeter", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lengthInMillimeter", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "widthInMillimeter", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "weightInGram", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TrackingData", - "description": null, - "fields": [ - { - "name": "trackingId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "carrier", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "provider", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "providerTransaction", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "isReturn", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShippingMethodState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "MatchesCart", - "description": "Either there is no predicate defined for the ShippingMethod or the given predicate matches the cart", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DoesNotMatchCart", - "description": "The ShippingMethod predicate does not match the cart. Ordering this cart will fail with error ShippingMethodDoesNotMatchCart", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingMethod", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "version", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "zoneRates", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ZoneRate", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "isDefault", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "predicate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anonymousId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItems", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShoppingListLineItem", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "textLineItems", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TextLineItem", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteDaysAfterLastModification", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "key", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "taxCategoryRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "taxCategory", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaxCategory", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShoppingListLineItem", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ZoneRate", - "description": null, - "fields": [ - { - "name": "shippingRates", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShippingRate", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variantId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "zoneRef", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productTypeRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", "name": "Reference", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "zone", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Zone", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Zone", - "description": "Zones allow defining ShippingRates for specific Locations.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "name": "ProductTypeDefinition", + "ofType": null + } }, - { - "name": "key", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Location", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivatedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productSlug", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variant", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TextLineItem", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Location", - "description": null, - "fields": [ - { - "name": "country", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Country", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DiscountCodeInfo", - "description": null, - "fields": [ - { - "name": "discountCodeRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DiscountCodeState", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "discountCode", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DiscountCode", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DiscountCodeState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ApplicationStoppedByPreviousDiscount", - "description": "The discount code is active and none of the discounts were applied because the discount application was stopped by one discount that has the StackingMode of StopAfterThisDiscount defined", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NotValid", - "description": "The discount code is not valid or it does not contain any valid cart discounts. Validity is determined based on the validFrom and validUntil dates", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MaxApplicationReached", - "description": "maxApplications or maxApplicationsPerCustomer for discountCode has been reached.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MatchesCart", - "description": "The discount code is active and it contains at least one active and valid CartDiscount. The discount code cartPredicate matches the cart and at least one of the contained active discount’s cart predicates matches the cart.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DoesNotMatchCart", - "description": "The discount code is active and it contains at least one active and valid CartDiscount. But its cart predicate does not match the cart or none of the contained active discount’s cart predicates match the cart", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NotActive", - "description": "The discount code is not active or it does not contain any active cart discounts.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DiscountCode", - "description": "With discount codes it is possible to give specific cart discounts to an eligible amount of users. They are defined by a string value which can be added to a cart so that specific cart discounts can be applied to the cart.", - "fields": [ - { - "name": "code", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "isActive", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "maxApplications", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Long", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "maxApplicationsPerCustomer", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null }, - { - "name": "cartPredicate", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "applicationVersion", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShoppingListQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Long", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "validFrom", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "validUntil", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groups", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ShippingMethodsByCartInterface", + "description": "A field to retrieve available shipping methods for a cart.", + "fields": [ + { + "name": "shippingMethodsByCart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cartDiscounts", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CartDiscount", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "referenceRefs", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -14358,635 +19601,926 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "ShippingMethod", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InStore", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "MeFieldInterface", + "description": "The me field gives access to the data that is specific to the customer or anonymous session linked to the access token.", + "fields": [ + { + "name": "me", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "MeQueryInterface", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Query", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InStore", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "MeQueryInterface", + "description": null, + "fields": [ + { + "name": "cart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RawCustomField", - "ofType": null - } - } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" - }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" - }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "applicationCount", - "description": "How many times this discount code was applied (only applications that were part of a successful checkout are considered)", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carts", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cartDiscountRefs", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Reference", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "limit", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "offset", + "description": null, + "type": { "kind": "SCALAR", - "name": "Long", + "name": "Int", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeCart", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "orderNumber", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orders", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - } + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PaymentInfo", - "description": null, - "fields": [ - { - "name": "payments", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Payment", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingList", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null }, - { - "name": "paymentRefs", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingLists", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Reference", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Payment", - "description": "Payments hold information about the current state of receiving and/or refunding money.\n[documentation](https://docs.commercetools.com/http-api-projects-payments)", - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customerRef", - "description": null, - "args": [], - "type": { + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "name": "ShoppingListQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Me", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "InStoreMe", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Me", + "description": null, + "fields": [ + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "customer", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "anonymousId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carts", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaceId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountPlanned", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountAuthorized", - "description": null, - "args": [], - "type": { + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Money", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "https://docs.commercetools.com/release-notes.html#releases-2017-09-29-payment-api-beta-changes" + "name": "CartQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeCart", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "authorizedUntil", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "https://docs.commercetools.com/release-notes.html#releases-2017-09-29-payment-api-beta-changes" + { + "name": "orderNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null }, - { - "name": "amountPaid", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Money", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orders", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "https://docs.commercetools.com/release-notes.html#releases-2017-09-29-payment-api-beta-changes" - }, - { - "name": "amountRefunded", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Money", - "ofType": null + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "https://docs.commercetools.com/release-notes.html#releases-2017-09-29-payment-api-beta-changes" - }, - { - "name": "paymentMethodInfo", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PaymentMethodInfo", + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "paymentStatus", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PaymentStatus", + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingList", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null }, - { - "name": "transactions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingLists", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Transaction", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaceInteractionsRaw", - "description": null, - "args": [ - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShoppingListQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "payment", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InterfaceInteractionsRawResult", + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "MyPayment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "payments", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MyPaymentQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MeQueryInterface", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MyPayment", + "description": "My Payments endpoint provides access to payments scoped to a specific user.\n[documentation](https://docs.commercetools.com/http-api-projects-me-payments#mypayment)", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "anonymousId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentMethodInfo", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PaymentMethodInfo", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountPlanned", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -14994,270 +20528,170 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "Transaction", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" + } }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MyPaymentQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "CustomField", + "kind": "OBJECT", + "name": "MyPayment", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PaymentMethodInfo", - "description": null, - "fields": [ - { - "name": "paymentInterface", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "method", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "description": "A key that references a resource.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InStore", + "description": null, + "fields": [ + { + "name": "me", + "description": "This field can only be used with an access token created with the password flow or with an anonymous session.\n\nIt gives access to the data that is specific to the customer or the anonymous session linked to the access token.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InStoreMe", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethodsByCart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -15265,611 +20699,306 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "ShippingMethod", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PaymentStatus", - "description": null, - "fields": [ - { - "name": "interfaceCode", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaceText", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "State", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Transaction", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": null, + "args": [ + { + "name": "emailToken", + "description": "Queries a customer with specified email token", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "TransactionType", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", + { + "name": "passwordToken", + "description": "Queries a customer with specified password token", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interactionId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TransactionState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TransactionType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Chargeback", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Refund", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Charge", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CancelAuthorization", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Authorization", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TransactionState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Failure", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Success", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Pending", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Initial", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InterfaceInteractionsRawResult", - "description": null, - "fields": [ - { - "name": "limit", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customers", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "InterfaceInteractionsRaw", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InterfaceInteractionsRaw", - "description": null, - "fields": [ - { - "name": "typeRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "TypeDefinition", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "name": "CustomerQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carts", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "RawCustomField", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ShippingRateInput", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "limit", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "ClassificationShippingRateInput", - "ofType": null - }, - { + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerActiveCart", + "description": null, + "args": [ + { + "name": "customerId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { "kind": "OBJECT", - "name": "ScoreShippingRateInput", + "name": "Cart", "ofType": null - } - ] - }, - { - "kind": "ENUM", - "name": "CartOrigin", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Merchant", - "description": "The cart was created by the merchant on behalf of the customer", - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "Customer", - "description": "The cart was created by the customer. This is the default value", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CartState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Ordered", - "description": "The cart was ordered. No further operations on the cart are allowed.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Merged", - "description": "Anonymous cart whose content was merged into a customers cart on signin. No further operations on the cart are allowed.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Active", - "description": "The cart can be updated and ordered. It is the default state.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CartQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "orderNumber", + "description": null, + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orders", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "CustomerActiveCartInterface", - "description": "A field to access a customer's active cart.", - "fields": [ - { - "name": "customerActiveCart", - "description": null, - "args": [ - { - "name": "customerId", - "description": null, - "type": { "kind": "NON_NULL", "name": null, "ofType": { @@ -15877,810 +21006,1314 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "InStore", - "ofType": null - } - ] - }, - { - "kind": "INTERFACE", - "name": "OrderQueryInterface", - "description": "Fields to access orders. Includes direct access to a single order and searching for orders.", - "fields": [ - { - "name": "order", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "orderNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Order", - "ofType": null + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartQueryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "CustomerActiveCartInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "OrderQueryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "CustomerQueryInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "ShippingMethodsByCartInterface", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "MeFieldInterface", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InStoreMe", + "description": null, + "fields": [ + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "orders", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carts", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderQueryResult", + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeCart", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "Query", + "name": "Cart", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { "kind": "OBJECT", - "name": "InStore", + "name": "Order", "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "Order", - "description": "An order can be created from a cart, usually after a checkout process has been completed.\n[documentation](https://docs.commercetools.com/http-api-projects-orders.html)", - "fields": [ - { - "name": "customerId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customer", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customerEmail", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "anonymousId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orders", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lineItems", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LineItem", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingList", + "description": null, + "args": [ + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null }, - { - "name": "customLineItems", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingLists", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomLineItem", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "totalPrice", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxedPrice", - "description": null, - "args": [], - "type": { + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "TaxedPrice", + "name": "ShoppingListQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MeQueryInterface", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomerGroupQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shippingAddress", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Address", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "billingAddress", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Address", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inventoryMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "InventoryMode", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomerGroup", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "taxMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaxMode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxRoundingMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RoundingMode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxCalculationMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaxCalculationMode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customerGroup", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customerGroupRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Category", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "country", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Country", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shippingInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ShippingInfo", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountCodes", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DiscountCodeInfo", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "refusedGifts", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CartDiscount", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "refusedGiftsRefs", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Reference", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ancestorsRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ancestors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + } + } + } }, - { - "name": "paymentInfo", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PaymentInfo", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parentRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null }, - { - "name": "locale", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null }, - { - "name": "shippingRateInput", - "description": null, - "args": [], - "type": { - "kind": "INTERFACE", - "name": "ShippingRateInput", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderHint", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "origin", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CartOrigin", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaTitle", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "storeRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "KeyReference", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaKeywords", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "beta feature" + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "store", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Store", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaDescription", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "beta feature" - }, - { - "name": "itemShippingAddresses", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Address", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "completedAt", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productCount", + "description": "Number of a products in the category subtree.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "orderNumber", - "description": null, - "args": [], - "type": { + "isDeprecated": true, + "deprecationReason": "The returned number is representing only staged products. Use 'stagedProductCount' instead" + }, + { + "name": "stagedProductCount", + "description": "Number of staged products in the category subtree.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childCount", + "description": "Number of direct child categories.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "orderState", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": "Direct child categories.", + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "OrderState", + "kind": "OBJECT", + "name": "Category", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "State", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shipmentState", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ShipmentState", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "paymentState", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "PaymentState", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "syncInfo", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assets", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SyncInfo", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returnInfo", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ReturnInfo", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastMessageSequenceNumber", - "description": null, - "args": [], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "OBJECT", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "cartRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null }, - { - "name": "cart", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CategoryQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -16688,1209 +22321,860 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "Category", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" + } }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "SearchFilter", + "description": "Search filter. It is represented as a string and has th same format as in REST API: \"field:filter_criteria\"", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CategorySearchResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + } }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CategorySearch", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CategorySearch", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Locale", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Locale", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "CustomField", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OrderState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Confirmed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Cancelled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Complete", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Open", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShipmentState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Delayed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Backorder", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Partial", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Pending", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Ready", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Shipped", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PaymentState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Paid", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CreditOwed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Pending", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Failed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BalanceDue", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SyncInfo", - "description": "Stores information about order synchronization activities (like export or import).", - "fields": [ - { - "name": "channelRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "channel", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Channel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "syncedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ReturnInfo", - "description": "Stores information about returns connected to this order.", - "fields": [ - { - "name": "items", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "ReturnItem", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "returnTrackingId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "returnDate", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ReturnItem", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "comment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shipmentState", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ancestorsRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "ReturnShipmentState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "paymentState", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReturnPaymentState", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ancestors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CategorySearch", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parentRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parent", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CategorySearch", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "The returned number is representing only staged products. Use 'stagedProductCount' instead" + }, + { + "name": "stagedProductCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "childCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productTypeNames", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CustomLineItemReturnItem", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "LineItemReturnItem", - "ofType": null - } - ] - }, - { - "kind": "ENUM", - "name": "ReturnShipmentState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Unusable", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "BackInStock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Returned", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Advised", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ReturnPaymentState", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "NotRefunded", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Refunded", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Initial", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NonRefundable", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrderQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "children", + "description": "Direct child categories.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CategorySearch", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderHint", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "assets", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Asset", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Order", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "CustomerQueryInterface", - "description": "Fields to access customer accounts. Includes direct access to a single customer and searching for customers.", - "fields": [ - { - "name": "customer", - "description": null, - "args": [ - { - "name": "emailToken", - "description": "Queries a customer with specified email token", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null }, - { - "name": "passwordToken", - "description": "Queries a customer with specified password token", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customers", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CustomerQueryResult", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Query", + } + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", "ofType": null }, - { + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "InStore", + "name": "CustomFieldsType", "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "CustomerQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Customer", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ShoppingListQueryInterface", - "description": "Fields to access shopping lists. Includes direct access to a single list and searching for shopping lists.", - "fields": [ - { - "name": "shoppingList", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShoppingList", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shoppingLists", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ShoppingListQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Query", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "ShoppingList", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LocalizedText", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "text", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "SearchSort", + "description": "Search sort", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChannelQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -17898,60 +23182,235 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "Channel", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "slug", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomObject", + "description": null, + "fields": [ + { + "name": "container", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomObjectQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "slugAllLocales", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -17959,615 +23418,1124 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "CustomObject", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductTypeDefinitionQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customer", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Customer", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "anonymousId", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lineItems", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShoppingListLineItem", - "ofType": null - } + "kind": "OBJECT", + "name": "ProductTypeDefinition", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "textLineItems", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TypeDefinitionQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TextLineItem", - "ofType": null - } + "kind": "OBJECT", + "name": "TypeDefinition", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingMethodQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteDaysAfterLastModification", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ZoneQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Zone", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TaxCategoryQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShoppingListLineItem", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "productId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TaxCategory", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "variantId", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiscountCodeQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "productTypeRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "productType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProductTypeDefinition", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DiscountCode", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartDiscountQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "addedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartDiscount", "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null + } } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductDiscountQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } + "kind": "OBJECT", + "name": "ProductDiscount", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deactivatedAt", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Product", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "custom", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productTypeRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "CustomFieldsType", + "name": "Reference", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "productSlug", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productType", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProductTypeDefinition", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "masterData", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductCatalogData", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "catalogData", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductCatalogData", + "ofType": null }, - { - "name": "variant", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductVariant", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TextLineItem", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": true, + "deprecationReason": "only 'masterData' supported" + }, + { + "name": "skus", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null + } } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stateRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "State", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategoryRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategory", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TaxCategory", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reviewRatingStatistics", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ReviewRatingStatistics", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "ReviewTarget", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductCatalogData", + "description": null, + "fields": [ + { + "name": "current", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProductData", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "staged", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProductData", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "published", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasStagedChanges", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductData", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } + "kind": "SCALAR", + "name": "Locale", + "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -18579,255 +24547,464 @@ "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "descriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "addedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShoppingListQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slugAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "categoryOrderHint", + "description": null, + "args": [ + { + "name": "categoryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "categoryOrderHints", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CategoryOrderHint", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "categoriesRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "categories", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Category", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchKeyword", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "SearchKeyword", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchKeywords", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SearchKeywords", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaTitle", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ShoppingList", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaTitleAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaKeywords", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ShippingMethodsByCartInterface", - "description": "A field to retrieve available shipping methods for a cart.", - "fields": [ - { - "name": "shippingMethodsByCart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaKeywordsAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaDescription", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ShippingMethod", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Query", + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "OBJECT", - "name": "InStore", - "ofType": null - } - ] - }, - { - "kind": "INTERFACE", - "name": "MeFieldInterface", - "description": "The me field gives access to the data that is specific to the customer or anonymous session linked to the access token.", - "fields": [ - { - "name": "me", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "metaDescriptionAllLocales", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "MeQueryInterface", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Query", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "InStore", - "ofType": null - } - ] - }, - { - "kind": "INTERFACE", - "name": "MeQueryInterface", - "description": null, - "fields": [ - { - "name": "cart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "masterVariant", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variants", + "description": null, + "args": [ + { + "name": "skus", + "description": "Queries for products with specified SKUs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -18835,333 +25012,662 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "carts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "isOnStock", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "stockChannelIds", + "description": "The IDs of channels for which to check the stock of the `isOnStock`.\n\nVariant is returned if at least one of the channels is matching the `isOnStock`\n\nIf the list is not provided then noChannel is checked for `isOnStock`", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "hasImages", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CartQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activeCart", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductVariant", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "Order", - "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allVariants", + "description": null, + "args": [ + { + "name": "skus", + "description": "Queries for products with specified SKUs", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orders", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + { + "name": "isOnStock", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "stockChannelIds", + "description": "The IDs of channels for which to check the stock of the `isOnStock`.\n\nVariant is returned if at least one of the channels is matching the `isOnStock`\n\nIf the list is not provided then noChannel is checked for `isOnStock`", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "hasImages", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "OrderQueryResult", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shoppingList", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variant", + "description": null, + "args": [ + { + "name": "sku", + "description": "Queries for a variant with specified SKU", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": "Queries for a variant with specified [key](https://dev.commercetools.com/http-api-projects-products.html#variant_key)", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductVariant", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "skus", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "ShoppingList", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CategoryOrderHint", + "description": null, + "fields": [ + { + "name": "categoryId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shoppingLists", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderHint", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SearchKeyword", + "description": null, + "fields": [ + { + "name": "text", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "suggestTokenizer", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "SuggestTokenizer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "SuggestTokenizer", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CustomSuggestTokenizer", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "WhitespaceSuggestTokenizer", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "SearchKeywords", + "description": null, + "fields": [ + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchKeywords", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SearchKeyword", "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Product", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StateQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ShoppingListQueryResult", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "State", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InventoryEntry", + "description": "Inventory allows you to track stock quantity per SKU and optionally per supply channel", + "fields": [ + { + "name": "sku", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantityOnStock", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "availableQuantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "restockableInDays", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expectedDelivery", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyChannel", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "Me", + "name": "Channel", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyChannelRef", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "InStoreMe", + "name": "Reference", "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "Me", - "description": null, - "fields": [ - { - "name": "customer", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "cart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldsRaw", + "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -19169,1317 +25675,2497 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "carts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CartQueryResult", + "name": "RawCustomField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "activeCart", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Cart", + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "customFields", + "description": "This field would contain type data", + "args": [], + "type": { + "kind": "INTERFACE", + "name": "Type", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Please use 'custom.customFieldsRaw'" + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "order", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Order", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "orders", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customFieldList", + "description": "Custom fields are returned as a list instead of an object structure.", + "args": [ + { + "name": "includeNames", + "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "excludeNames", + "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "OrderQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InventoryEntryQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "shoppingList", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InventoryEntry", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrderEdit", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resourceRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "ShoppingList", + "name": "Reference", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shoppingLists", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resource", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stagedActions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ShoppingListQueryResult", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "MeQueryInterface", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "description": "A key that references a resource.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InStore", - "description": null, - "fields": [ - { - "name": "me", - "description": "This field can only be used with an access token created with the password flow or with an anonymous session.\n\nIt gives access to the data that is specific to the customer or the anonymous session linked to the access token.", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "result", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "OrderEditResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AddStagedOrderCustomLineItemOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderDeliveryOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderDiscountCodeOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderItemShippingAddressOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderLineItemOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderParcelToDeliveryOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderPaymentOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderReturnInfoOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderShoppingListOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderCustomLineItemMoneyOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderCustomLineItemQuantityOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderLineItemQuantityOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderOrderStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderPaymentStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderShipmentStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderTaxCalculationModeOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderTaxModeOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderTaxRoundingModeOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ImportStagedOrderCustomLineItemStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ImportStagedOrderLineItemStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RecalculateStagedOrderOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderCustomLineItemOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderDeliveryOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderDiscountCodeOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderItemShippingAddressOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderLineItemOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderParcelFromDeliveryOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderPaymentOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderBillingAddressOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCountryOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomFieldOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemCustomFieldOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemCustomTypeOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemShippingDetailsOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemTaxAmountOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemTaxRateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomShippingMethodOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomTypeOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomerEmailOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomerGroupOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomerIdOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderDeliveryAddressOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderDeliveryItemsOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemCustomFieldOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemCustomTypeOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemDistributionChannelOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemPriceOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemShippingDetailsOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemTaxAmountOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemTaxRateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemTotalPriceOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLocaleOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderOrderNumberOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderOrderTotalTaxOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderParcelItemsOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderParcelMeasurementsOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderParcelTrackingDataOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderReturnPaymentStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderReturnShipmentStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingAddressAndCustomShippingMethodOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingAddressAndShippingMethodOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingAddressOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingMethodOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingMethodTaxAmountOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingMethodTaxRateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingRateInputOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderStoreOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TransitionStagedOrderCustomLineItemStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TransitionStagedOrderLineItemStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "TransitionStagedOrderStateOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UpdateStagedOrderItemShippingAddressOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "UpdateStagedOrderSyncInfoOutput", + "ofType": null + } + ] + }, + { + "kind": "INTERFACE", + "name": "OrderEditResult", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Applied", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "NotProcessed", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "PreviewFailure", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "PreviewSuccess", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "OrderEditQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "InStoreMe", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderEdit", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shippingMethodsByCart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PaymentQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShippingMethod", - "ofType": null - } + "kind": "OBJECT", + "name": "Payment", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customer", - "description": null, - "args": [ - { - "name": "emailToken", - "description": "Queries a customer with specified email token", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "passwordToken", - "description": "Queries a customer with specified password token", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectProjection", + "description": "Project contains information about project.", + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "languages", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trialUntil", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "YearMonth", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Customer", + "name": "CartsConfiguration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingLists", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShoppingListsConfiguration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customers", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalOAuth", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalOAuth", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "messages", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MessagesConfiguration", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "countries", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Country", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currencies", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomerQueryResult", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "cart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingRateInputType", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "ShippingRateInputType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "YearMonth", + "description": "YearMonth is a scalar value that represents an ISO8601 formatted year and month.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartsConfiguration", + "description": null, + "fields": [ + { + "name": "deleteDaysAfterLastModification", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allowAddingUnpublishedProducts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "carts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CartQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "countryTaxRateFallbackEnabled", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - { - "name": "customerActiveCart", - "description": null, - "args": [ - { - "name": "customerId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShoppingListsConfiguration", + "description": null, + "fields": [ + { + "name": "deleteDaysAfterLastModification", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExternalOAuth", + "description": null, + "fields": [ + { + "name": "url", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "order", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Order", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authorizationHeader", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "orders", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MessagesConfiguration", + "description": null, + "fields": [ + { + "name": "enabled", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteDaysAfterCreation", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ShippingRateInputType", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CartClassificationType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CartScoreType", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CartValueType", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "StoreQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "OrderQueryResult", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Store", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartQueryInterface", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Review", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "INTERFACE", - "name": "CustomerActiveCartInterface", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uniquenessValue", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "INTERFACE", - "name": "OrderQueryInterface", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Locale", "ofType": null }, - { - "kind": "INTERFACE", - "name": "CustomerQueryInterface", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authorName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null }, - { - "kind": "INTERFACE", - "name": "ShippingMethodsByCartInterface", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "text", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "targetRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "target", + "description": null, + "args": [], + "type": { "kind": "INTERFACE", - "name": "MeFieldInterface", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InStoreMe", - "description": null, - "fields": [ - { - "name": "customer", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Customer", + "name": "ReviewTarget", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "rating", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stateRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "State", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "includedInStatistics", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "cart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsType", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "carts", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CartQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "activeCart", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Cart", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "order", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Order", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "orders", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrderQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null }, - { - "name": "shoppingList", - "description": null, - "args": [ - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShoppingList", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReviewQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shoppingLists", - "description": null, - "args": [ - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShoppingListQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "MeQueryInterface", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CustomerGroupQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Review", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Subscription", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "destination", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Destination", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "messages", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null - } + "kind": "OBJECT", + "name": "MessageSubscription", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Category", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "changes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeSubscription", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "format", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "NotificationFormat", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SubscriptionHealthStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "Destination", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AzureServiceBusDestination", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "EventGridDestination", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "GoogleCloudPubSubDestination", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SNSDestination", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "SQSDestination", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "MessageSubscription", + "description": null, + "fields": [ + { + "name": "resourceTypeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "types", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null + } } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeSubscription", + "description": null, + "fields": [ + { + "name": "resourceTypeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "NotificationFormat", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "CloudEventsSubscriptionsFormat", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "PlatformFormat", + "ofType": null + } + ] + }, + { + "kind": "ENUM", + "name": "SubscriptionHealthStatus", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "TemporaryError", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ConfigurationErrorDeliveryStopped", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ConfigurationError", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Healthy", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SubscriptionQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -20487,355 +28173,363 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "LocalizedString", + "name": "Subscription", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "slug", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Extension", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "slugAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "destination", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "ExtensionDestination", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triggers", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ancestorsRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ancestors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Category", - "ofType": null - } + "kind": "OBJECT", + "name": "Trigger", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeoutInMs", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "parentRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Category", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderHint", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "externalId", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "metaTitle", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "metaKeywords", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ExtensionDestination", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metaDescription", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AWSLambdaDestination", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "HttpDestination", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Trigger", + "description": null, + "fields": [ + { + "name": "resourceTypeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productCount", - "description": "Number of a products in the category subtree.", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ActionType", + "ofType": null + } } - }, - "isDeprecated": true, - "deprecationReason": "The returned number is representing only staged products. Use 'stagedProductCount' instead" + } }, - { - "name": "stagedProductCount", - "description": "Number of staged products in the category subtree.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ActionType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Update", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Create", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExtensionQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "childCount", - "description": "Number of direct child categories.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "children", - "description": "Direct child categories.", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -20843,112 +28537,165 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Category", + "name": "Extension", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "APIClientWithoutSecret", + "description": "API Clients can be used to obtain OAuth 2 access tokens", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "assets", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastUsedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "APIClientWithoutSecretQueryResult", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -20956,8444 +28703,8474 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "RawCustomField", + "name": "APIClientWithoutSecret", "ofType": null } } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" - }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + } }, - { - "name": "custom", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectCustomLimitsProjection", + "description": "Contains information about the limits of your project.", + "fields": [ + { + "name": "query", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "CustomFieldsType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { + "name": "QueryLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "products", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { + "name": "ProductLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingLists", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "name": "ShoppingListLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "extensions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExtensionLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productDiscounts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductDiscountLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cartDiscounts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartDiscountLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderEdits", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderEditLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stores", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "StoreLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customers", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomerLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroups", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomerGroupLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "zones", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ZoneLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategories", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TaxCategoryLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refreshTokens", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RefreshTokenLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethods", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShippingMethodLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "carts", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartLimitsProjection", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "QueryLimitsProjection", + "description": null, + "fields": [ + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Limit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Limit", + "description": null, + "fields": [ + { + "name": "limit", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductLimitsProjection", + "description": null, + "fields": [ + { + "name": "pricesPerVariant", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Limit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variants", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Limit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShoppingListLimitsProjection", + "description": null, + "fields": [ + { + "name": "lineItems", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Limit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "textLineItems", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Limit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "description": null, + "fields": [ + { + "name": "limit", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "current", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExtensionLimitsProjection", + "description": null, + "fields": [ + { + "name": "timeoutInMs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Limit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductDiscountLimitsProjection", + "description": null, + "fields": [ + { + "name": "totalActive", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartDiscountLimitsProjection", + "description": null, + "fields": [ + { + "name": "totalActiveWithoutDiscountCodes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrderEditLimitsProjection", + "description": null, + "fields": [ + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StoreLimitsProjection", + "description": null, + "fields": [ + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomerLimitsProjection", + "description": null, + "fields": [ + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomerGroupLimitsProjection", + "description": null, + "fields": [ + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ZoneLimitsProjection", + "description": null, + "fields": [ + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TaxCategoryLimitsProjection", + "description": null, + "fields": [ + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RefreshTokenLimitsProjection", + "description": null, + "fields": [ + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingMethodLimitsProjection", + "description": null, + "fields": [ + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartLimitsProjection", + "description": null, + "fields": [ + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LimitWithCurrent", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ + { + "name": "createCustomerGroup", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomerGroupDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomerGroup", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateCustomerGroup", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomerGroupUpdateAction", "ofType": null } } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CategoryQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomerGroup", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomerGroup", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Category", - "ofType": null - } + "kind": "SCALAR", + "name": "Long", + "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "SearchFilter", - "description": "Search filter. It is represented as a string and has th same format as in REST API: \"field:filter_criteria\"", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CategorySearchResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomerGroup", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createCategory", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CategorySearch", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CategoryDraft", + "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CategorySearch", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null }, - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateCategory", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Locale", + "kind": "INPUT_OBJECT", + "name": "CategoryUpdateAction", "ofType": null } } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCategory", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } + "kind": "SCALAR", + "name": "Long", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Category", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createChannel", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChannelDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateChannel", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Locale", + "kind": "INPUT_OBJECT", + "name": "ChannelUpdateAction", "ofType": null } } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null }, - { - "name": "slugAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteChannel", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Channel", + "ofType": null }, - { - "name": "ancestorsRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createProductType", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ProductTypeDraft", + "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductTypeDefinition", + "ofType": null }, - { - "name": "ancestors", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProductType", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CategorySearch", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProductTypeUpdateAction", + "ofType": null + } } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parent", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CategorySearch", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "externalId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "The returned number is representing only staged products. Use 'stagedProductCount' instead" - }, - { - "name": "stagedProductCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductTypeDefinition", + "ofType": null }, - { - "name": "childCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteProductType", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductTypeDefinition", + "ofType": null }, - { - "name": "productTypeNames", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createTypeDefinition", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TypeDefinitionDraft", + "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TypeDefinition", + "ofType": null }, - { - "name": "children", - "description": "Direct child categories.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateTypeDefinition", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CategorySearch", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TypeUpdateAction", + "ofType": null + } } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderHint", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TypeDefinition", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteTypeDefinition", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TypeDefinition", + "ofType": null }, - { - "name": "assets", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createShippingMethod", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Asset", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ShippingMethodDraft", + "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateShippingMethod", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ShippingMethodUpdateAction", "ofType": null } } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteShippingMethod", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "RawCustomField", + "kind": "SCALAR", + "name": "Long", "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" - }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShippingMethod", + "ofType": null }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createZone", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateZone", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Zone", + "ofType": null }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateZone", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ZoneUpdateAction", "ofType": null } } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LocalizedText", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "text", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "locale", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Zone", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteZone", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "SearchSort", - "description": "Search sort", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChannelQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Zone", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createTaxCategory", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TaxCategory", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateTaxCategory", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Channel", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryUpdateAction", + "ofType": null + } } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductTypeDefinitionQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TaxCategory", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteTaxCategory", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductTypeDefinition", - "ofType": null - } + "kind": "SCALAR", + "name": "Long", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TypeDefinitionQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "TaxCategory", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createDiscountCode", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DiscountCodeDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DiscountCode", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateDiscountCode", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TypeDefinition", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DiscountCodeUpdateAction", + "ofType": null + } } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingMethodQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DiscountCode", + "ofType": null }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteDiscountCode", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DiscountCode", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createCartDiscount", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartDiscountDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CartDiscount", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateCartDiscount", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ShippingMethod", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartDiscountUpdateAction", + "ofType": null + } } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ZoneQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CartDiscount", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCartDiscount", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CartDiscount", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createProductDiscount", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "INPUT_OBJECT", + "name": "ProductDiscountDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductDiscount", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProductDiscount", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Zone", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProductDiscountUpdateAction", + "ofType": null + } } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TaxCategoryQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductDiscount", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteProductDiscount", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TaxCategory", - "ofType": null - } + "kind": "SCALAR", + "name": "Long", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DiscountCodeQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductDiscount", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createProduct", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProductDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProduct", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DiscountCode", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProductUpdateAction", + "ofType": null + } } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CartDiscountQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteProduct", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Product", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createState", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "INPUT_OBJECT", + "name": "StateDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "State", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateState", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CartDiscount", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StateUpdateAction", + "ofType": null + } } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductDiscountQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "State", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteState", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductDiscount", - "ofType": null - } + "kind": "SCALAR", + "name": "Long", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Product", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "State", + "ofType": null }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerSignUp", + "description": "Creates a customer. If an anonymous cart is given then the cart is assigned to\nthe created customer and the version number of the Cart will increase. If the\nid of an anonymous session is given, all carts and orders will be assigned to\nthe created customer.", + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomerSignUpDraft", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "KeyReferenceInput", "ofType": null - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomerSignInResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerSignIn", + "description": "Retrieves the authenticated customer (a customer that matches the given email/password pair).\n\nThere may be carts and orders created before the sign in that should be\nassigned to the customer account. With the `anonymousCartId`, a single\nanonymous cart can be assigned. With the `anonymousId`, all orders and carts\nthat have this `anonymousId` set will be assigned to the customer.\nIf both `anonymousCartId` and `anonymousId` are given, the anonymous cart must have the `anonymousId`.\n\nAdditionally, there might also exist one or more active customer carts from an\nearlier session. On customer sign in there are several ways how to proceed\nwith this cart and the cart referenced by the `anonymousCartId`.\n\n* If the customer does not have a cart yet, the anonymous cart becomes the customer's cart.\n* If the customer already has one or more carts, the content of the anonymous\ncart will be copied to the customer's active cart that has been modified most recently.\n\n In this case the `CartState` of the anonymous cart gets changed to `Merged`\nwhile the customer's cart remains the `Active` cart.\n\n If a `LineItem` in the anonymous cart matches an existing line item, or a\n`CustomLineItem` matches an existing custom line item in the customer's cart,\nthe maximum quantity of both line items is used as the new quantity.\n\n `ItemShippingDetails` are copied from the item with the highest quantity.\n\n If `itemShippingAddresses` are different in the two carts, the resulting cart\ncontains the addresses of both the customer cart and the anonymous cart.\n\n Note, that it is not possible to merge carts that differ in their currency (set during creation of the cart).\n\nIf a cart is is returned as part of the `CustomerSignInResult`, it has been\nrecalculated (it will have up-to-date prices, taxes and discounts, and invalid\nline items have been removed).", + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomerSignInDraft", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productTypeRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductTypeDefinition", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "masterData", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductCatalogData", + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "catalogData", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "ProductCatalogData", - "ofType": null + "name": "CustomerSignInResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateCustomer", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": true, - "deprecationReason": "only 'masterData' supported" - }, - { - "name": "skus", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomerUpdateAction", + "ofType": null + } } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "KeyReferenceInput", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stateRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "state", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "State", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxCategoryRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "taxCategory", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TaxCategory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reviewRatingStatistics", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ReviewRatingStatistics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductCatalogData", - "description": null, - "fields": [ - { - "name": "current", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductData", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "staged", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductData", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomer", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "published", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "personalDataErasure", + "description": null, + "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null - } + }, + "defaultValue": "false" }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasStagedChanges", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "KeyReferenceInput", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductData", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerChangePassword", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } + "kind": "SCALAR", + "name": "Long", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "descriptionAllLocales", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { + { + "name": "currentPassword", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "slug", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + { + "name": "newPassword", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "categoryOrderHint", - "description": null, - "args": [ - { - "name": "categoryId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerResetPassword", + "description": "The following workflow can be used to reset the customer’s password:\n\n1. Create a password reset token and send it embedded in a link to the customer.\n2. When the customer clicks on the link, you may optionally retrieve customer by password token.\n3. When the customer entered new password, use reset customer’s password to reset the password.", + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "categoryOrderHints", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "tokenValue", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CategoryOrderHint", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "categoriesRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "newPassword", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "categories", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerConfirmEmail", + "description": "Verifies customer's email using a token.", + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenValue", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Category", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "searchKeyword", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerCreatePasswordResetToken", + "description": "The token value is used to reset the password of the customer with the given\nemail. The token is valid only for 10 minutes.", + "args": [ + { + "name": "email", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SearchKeyword", + "kind": "SCALAR", + "name": "String", "ofType": null } - } + }, + "defaultValue": null + }, + { + "name": "ttlMinutes", + "description": "The validity of the created token in minutes.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomerPasswordToken", + "ofType": null }, - { - "name": "searchKeywords", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerCreateEmailVerificationToken", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SearchKeywords", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metaTitle", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metaKeywords", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "metaDescription", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { + { + "name": "ttlMinutes", + "description": "The validity of the created token in minutes.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "masterVariant", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductVariant", + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variants", - "description": null, - "args": [ - { - "name": "skus", - "description": "Queries for products with specified SKUs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null }, - { - "name": "isOnStock", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomerEmailToken", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerSignMeUp", + "description": "If used with an access token for Anonymous Sessions, all orders and carts\nbelonging to the anonymousId will be assigned to the newly created customer.", + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomerSignMeUpDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "stockChannelIds", - "description": "The IDs of channels for which to check the stock of the `isOnStock`.\n\nVariant is returned if at least one of the channels is matching the `isOnStock`\n\nIf the list is not provided then noChannel is checked for `isOnStock`", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null }, - { - "name": "hasImages", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomerSignInResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerSignMeIn", + "description": "Retrieves the authenticated customer (a customer that matches the given email/password pair).\n\nIf used with an access token for Anonymous Sessions, all orders and carts\nbelonging to the `anonymousId` will be assigned to the newly created customer.\n\n* If the customer does not have a cart yet, the anonymous cart that was\nmodified most recently becomes the customer's cart.\n* If the customer already has a cart, the most recently modified anonymous\ncart will be handled according to the `AnonymousCartSignInMode`.\n\nIf a cart is is returned as part of the `CustomerSignInResult`, it has been\nrecalculated (it will have up-to-date prices, taxes and discounts, and invalid\nline items have been removed).", + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductVariant", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomerSignMeInDraft", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allVariants", - "description": null, - "args": [ - { - "name": "skus", - "description": "Queries for products with specified SKUs", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null }, - { - "name": "isOnStock", - "description": null, - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomerSignInResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateMyCustomer", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "stockChannelIds", - "description": "The IDs of channels for which to check the stock of the `isOnStock`.\n\nVariant is returned if at least one of the channels is matching the `isOnStock`\n\nIf the list is not provided then noChannel is checked for `isOnStock`", - "type": { + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "MyCustomerUpdateAction", "ofType": null } } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null }, - { - "name": "hasImages", - "description": null, - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteMyCustomer", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Long", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "personalDataErasure", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + }, + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerChangeMyPassword", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductVariant", - "ofType": null - } + "kind": "SCALAR", + "name": "Long", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variant", - "description": null, - "args": [ - { - "name": "sku", - "description": "Queries for a variant with specified SKU", - "type": { + { + "name": "currentPassword", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries for a variant with specified [key](https://dev.commercetools.com/http-api-projects-products.html#variant_key)", - "type": { + "defaultValue": null + }, + { + "name": "newPassword", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductVariant", - "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "skus", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerConfirmMyEmail", + "description": null, + "args": [ + { + "name": "tokenValue", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CategoryOrderHint", - "description": null, - "fields": [ - { - "name": "categoryId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "orderHint", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerResetMyPassword", + "description": null, + "args": [ + { + "name": "tokenValue", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SearchKeyword", - "description": null, - "fields": [ - { - "name": "text", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + { + "name": "newPassword", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SearchKeywords", - "description": null, - "fields": [ - { - "name": "locale", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "Locale", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Customer", + "ofType": null }, - { - "name": "searchKeywords", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createInventoryEntry", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "INPUT_OBJECT", + "name": "InventoryEntryDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "InventoryEntry", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateInventoryEntry", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SearchKeyword", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InventoryEntryUpdateAction", + "ofType": null + } } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "InventoryEntry", + "ofType": null }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteInventoryEntry", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "InventoryEntry", + "ofType": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createCart", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartDraft", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateCart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Product", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartUpdateAction", + "ofType": null + } } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StateQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "State", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InventoryEntry", - "description": "Inventory allows you to track stock quantity per SKU and optionally per supply channel", - "fields": [ - { - "name": "sku", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quantityOnStock", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "personalDataErasure", + "description": null, + "type": { "kind": "SCALAR", - "name": "Long", + "name": "Boolean", "ofType": null - } + }, + "defaultValue": "false" }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "availableQuantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "restockableInDays", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "replicateCart", + "description": null, + "args": [ + { + "name": "reference", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "expectedDelivery", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createMyCart", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MyCartDraft", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "supplyChannel", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Channel", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateMyCart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "supplyChannelRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldsRaw", - "description": "This field contains non-typed data. Consider using `customFields` as a typed alternative.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "MyCartUpdateAction", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all custom fields are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { + "defaultValue": null + }, + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { + "kind": "SCALAR", + "name": "KeyReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteMyCart", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "RawCustomField", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFieldsRaw'" - }, - { - "name": "customFields", - "description": "This field would contain type data", - "args": [], - "type": { - "kind": "INTERFACE", - "name": "Type", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "Please use 'custom.customFields'" - }, - { - "name": "custom", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomFieldsType", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createOrderFromCart", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrderCartCommand", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null }, - { - "name": "lastModifiedBy", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Initiator", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateOrder", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customFieldList", - "description": "Custom fields are returned as a list instead of an object structure.", - "args": [ - { - "name": "includeNames", - "description": "The names of the custom fields to include.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "OrderUpdateAction", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "excludeNames", - "description": "The names of the custom fields to exclude.\n\nIf neither `includeNames` nor `excludeNames` are provided, then all attributes are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - } + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Versioned", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InventoryEntryQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "KeyReferenceInput", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "orderNumber", + "description": null, + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteOrder", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InventoryEntry", - "ofType": null - } + "kind": "SCALAR", + "name": "Long", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PaymentQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "personalDataErasure", + "description": null, + "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null - } + }, + "defaultValue": "false" }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "KeyReferenceInput", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "orderNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createMyOrderFromCart", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Payment", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "OrderMyCartCommand", + "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectProjection", - "description": "Project contains information about project.", - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "storeKey", + "description": "Beta feature. The mutation is only performed if the resource is part of the\nstore. Can be used with store-specific OAuth permissions.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "KeyReferenceInput", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Order", + "ofType": null }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createOrderEdit", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrderEditDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrderEdit", + "ofType": null }, - { - "name": "languages", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateOrderEdit", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrderEditUpdateAction", + "ofType": null + } } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "dryRun", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trialUntil", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "YearMonth", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "carts", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CartsConfiguration", + "name": "Boolean", "ofType": null - } + }, + "defaultValue": "false" }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shoppingLists", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShoppingListsConfiguration", + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrderEdit", + "ofType": null }, - { - "name": "externalOAuth", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ExternalOAuth", - "ofType": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteOrderEdit", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messages", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MessagesConfiguration", + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrderEdit", + "ofType": null }, - { - "name": "countries", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createShoppingList", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Country", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ShoppingListDraft", + "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null }, - { - "name": "currencies", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateShoppingList", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ShoppingListUpdateAction", + "ofType": null + } } } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shippingRateInputType", - "description": null, - "args": [], - "type": { - "kind": "INTERFACE", - "name": "ShippingRateInputType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "YearMonth", - "description": "YearMonth is a scalar value that represents an ISO8601 formatted year and month.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CartsConfiguration", - "description": null, - "fields": [ - { - "name": "deleteDaysAfterLastModification", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShoppingListsConfiguration", - "description": null, - "fields": [ - { - "name": "deleteDaysAfterLastModification", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExternalOAuth", - "description": null, - "fields": [ - { - "name": "url", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "authorizationHeader", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteShoppingList", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MessagesConfiguration", - "description": null, - "fields": [ - { - "name": "enabled", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "personalDataErasure", + "description": null, + "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDaysAfterCreation", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + }, + "defaultValue": "false" }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ShippingRateInputType", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "CartClassificationType", - "ofType": null - }, - { + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { "kind": "OBJECT", - "name": "CartScoreType", + "name": "ShoppingList", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createMyShoppingList", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MyShoppingListDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { "kind": "OBJECT", - "name": "CartValueType", + "name": "ShoppingList", "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "StoreQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateMyShoppingList", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Store", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MyShoppingListUpdateAction", + "ofType": null + } } } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "APIClientWithoutSecret", - "description": "API Clients can be used to obtain OAuth 2 access tokens", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scope", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null }, - { - "name": "lastUsedAt", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "APIClientWithoutSecretQueryResult", - "description": null, - "fields": [ - { - "name": "offset", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteMyShoppingList", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "id", + "description": "Queries with specified ID", + "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "key", + "description": "Queries with specified key", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ShoppingList", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createPayment", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "APIClientWithoutSecret", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PaymentDraft", + "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": null, - "fields": [ - { - "name": "createCustomerGroup", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomerGroupDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null }, - { - "name": "updateCustomerGroup", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatePayment", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomerGroupUpdateAction", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "PaymentUpdateAction", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteCustomerGroup", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deletePayment", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CustomerGroup", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCategory", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CategoryDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Category", - "ofType": null + { + "name": "personalDataErasure", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateCategory", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CategoryUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Payment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createMyPayment", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MyPaymentDraft", + "ofType": null + } }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "MyPayment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateMyPayment", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries with specified key", - "type": { + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Category", - "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteCategory", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MyPaymentUpdateAction", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "MyPayment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteMyPayment", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries with specified key", - "type": { + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Category", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createChannel", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChannelDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Channel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateChannel", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "MyPayment", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProject", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChannelUpdateAction", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ProjectSettingsUpdateAction", + "ofType": null } } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Channel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteChannel", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Channel", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectProjection", + "ofType": null }, - { - "name": "createProductType", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductTypeDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductTypeDefinition", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createStore", + "description": "beta feature", + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateStore", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Store", + "ofType": null }, - { - "name": "updateProductType", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateStore", + "description": "beta feature", + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductTypeUpdateAction", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "StoreUpdateAction", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductTypeDefinition", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteProductType", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Store", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteStore", + "description": "beta feature", + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductTypeDefinition", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createShippingMethod", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingMethodDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShippingMethod", - "ofType": null + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Store", + "ofType": null }, - { - "name": "updateShippingMethod", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createReview", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReviewDraft", + "ofType": null + } }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Review", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateReview", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingMethodUpdateAction", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ReviewUpdateAction", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShippingMethod", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteShippingMethod", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Review", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteReview", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShippingMethod", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createZone", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateZone", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Zone", - "ofType": null + { + "name": "personalDataErasure", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Review", + "ofType": null }, - { - "name": "updateZone", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createSubscription", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SubscriptionDraft", + "ofType": null + } }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Subscription", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateSubscription", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ZoneUpdateAction", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "SubscriptionUpdateAction", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Zone", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteZone", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Subscription", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteSubscription", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Zone", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTaxCategory", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TaxCategory", - "ofType": null + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Subscription", + "ofType": null }, - { - "name": "updateTaxCategory", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createExtension", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExtensionDraft", + "ofType": null + } }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Extension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateExtension", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryUpdateAction", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ExtensionUpdateAction", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TaxCategory", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTaxCategory", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Extension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteExtension", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TaxCategory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createDiscountCode", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DiscountCodeDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DiscountCode", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDiscountCode", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DiscountCodeUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DiscountCode", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDiscountCode", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + { + "name": "id", + "description": "Queries with specified ID", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DiscountCode", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCartDiscount", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CartDiscountDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CartDiscount", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateCartDiscount", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CartDiscountUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null + { + "name": "key", + "description": "Queries with specified key", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Extension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createApiClient", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateApiClient", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CartDiscount", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "APIClientWithSecret", + "ofType": null }, - { - "name": "deleteCartDiscount", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteApiClient", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CartDiscount", + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "APIClientWithoutSecret", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomerGroupDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "groupName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createProductDiscount", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductDiscountDraft", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "ProductDiscount", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "description": "A key-value pair representing the field name and value of one single custom field.\n\nThe value of this custom field consists of escaped JSON based on the FieldDefinition of the Type.\n\nExamples for `value`:\n\n* FieldType `String`: `\"\\\"This is a string\\\"\"`\n* FieldType `DateTimeType`: `\"\\\"2001-09-11T14:00:00.000Z\\\"\"`\n* FieldType `Number`: `\"4\"`\n* FieldType `Set` with an elementType of `String`: `\"[\\\"This is a string\\\", \\\"This is another string\\\"]\"`\n* FieldType `Reference`: `\"{\\\"id\\\", \\\"b911b62d-353a-4388-93ee-8d488d9af962\\\", \\\"typeId\\\", \\\"product\\\"}\"`", + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updateProductDiscount", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductDiscountUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductDiscount", + "defaultValue": null + }, + { + "name": "value", + "description": "The value of this custom field consists of escaped JSON based on the FieldDefinition of the Type.\n\nExamples for `value`:\n\n* FieldType `String`: `\"\\\"This is a string\\\"\"`\n* FieldType `DateTimeType`: `\"\\\"2001-09-11T14:00:00.000Z\\\"\"`\n* FieldType `Number`: `\"4\"`\n* FieldType `Set` with an elementType of `String`: `\"[\\\"This is a string\\\", \\\"This is another string\\\"]\"`\n* FieldType `Reference`: `\"{\\\"id\\\", \\\"b911b62d-353a-4388-93ee-8d488d9af962\\\", \\\"typeId\\\", \\\"product\\\"}\"`", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteProductDiscount", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductDiscount", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomerGroupUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCustomerGroupName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerGroupKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerGroupCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerGroupCustomField", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCustomerGroupName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createProduct", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductDraft", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerGroupKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerGroupCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "Product", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updateProduct", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Product", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerGroupCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteProduct", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Product", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "customerSignUp", - "description": "Creates a customer. If an anonymous cart is given then the cart is assigned to the created customer and the version number of the Cart will increase. If the id of an anonymous session is given, all carts and orders will be assigned to the created customer.", - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomerSignUpDraft", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CategoryDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomerSignInResult", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerSignIn", - "description": "Retrieves the authenticated customer (a customer that matches the given email/password pair).\n\nThere may be carts and orders created before the sign in that should be assigned to the customer account. With the `anonymousCartId`, a single anonymous cart can be assigned. With the `anonymousId`, all orders and carts that have this `anonymousId` set will be assigned to the customer.\nIf both `anonymousCartId` and `anonymousId` are given, the anonymous cart must have the `anonymousId`.\n\nAdditionally, there might also exist one or more active customer carts from an earlier session. On customer sign in there are several ways how to proceed with this cart and the cart referenced by the `anonymousCartId`.\n\n* If the customer does not have a cart yet, the anonymous cart becomes the customer's cart.\n* If the customer already has one or more carts, the content of the anonymous cart will be copied to the customer's active cart that has been modified most recently.\n\n In this case the `CartState` of the anonymous cart gets changed to `Merged` while the customer's cart remains the `Active` cart.\n\n If a `LineItem` in the anonymous cart matches an existing line item, or a `CustomLineItem` matches an existing custom line item in the customer's cart, the maximum quantity of both line items is used as the new quantity.\n\n `ItemShippingDetails` are copied from the item with the highest quantity.\n\n If `itemShippingAddresses` are different in the two carts, the resulting cart contains the addresses of both the customer cart and the anonymous cart.\n\n Note, that it is not possible to merge carts that differ in their currency (set during creation of the cart).\n\nIf a cart is is returned as part of the `CustomerSignInResult`, it has been recalculated (it will have up-to-date prices, taxes and discounts, and invalid line items have been removed).", - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomerSignInDraft", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "externalId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "metaTitle", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomerSignInResult", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updateCustomer", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomerUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "metaDescription", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteCustomer", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "personalDataErasure", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "metaKeywords", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerChangePassword", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "currentPassword", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "newPassword", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "orderHint", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "parent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assets", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AssetDraftInput", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", + } + }, + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerResetPassword", - "description": "The following workflow can be used to reset the customer’s password:\n\n1. Create a password reset token and send it embedded in a link to the customer.\n2. When the customer clicks on the link, you may optionally retrieve customer by password token.\n3. When the customer entered new password, use reset customer’s password to reset the password.", - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenValue", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "newPassword", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerConfirmEmail", - "description": "Verifies customer's email using a token.", - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AssetDraftInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenValue", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customerCreatePasswordResetToken", - "description": "The token value is used to reset the password of the customer with the given email. The token is valid only for 10 minutes.", - "args": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ttlMinutes", - "description": "The validity of the created token in minutes.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "CustomerToken", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerCreateEmailVerificationToken", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "ttlMinutes", - "description": "The validity of the created token in minutes.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomerToken", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerSignMeUp", - "description": "If used with an access token for Anonymous Sessions, all orders and carts belonging to the anonymousId will be assigned to the newly created customer.", - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomerSignMeUpDraft", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sources", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomerSignInResult", + "kind": "INPUT_OBJECT", + "name": "AssetSourceInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerSignMeIn", - "description": "Retrieves the authenticated customer (a customer that matches the given email/password pair).\n\nIf used with an access token for Anonymous Sessions, all orders and carts belonging to the `anonymousId` will be assigned to the newly created customer.\n\n* If the customer does not have a cart yet, the anonymous cart that was modified most recently becomes the customer's cart.\n* If the customer already has a cart, the most recently modified anonymous cart will be handled according to the `AnonymousCartSignInMode`.\n\nIf a cart is is returned as part of the `CustomerSignInResult`, it has been recalculated (it will have up-to-date prices, taxes and discounts, and invalid line items have been removed).", - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomerSignMeInDraft", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + "defaultValue": null + }, + { + "name": "tags", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomerSignInResult", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updateMyCustomer", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MyCustomerUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "deleteMyCustomer", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "personalDataErasure", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AssetSourceInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "uri", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerChangeMyPassword", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "currentPassword", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "newPassword", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "customerConfirmMyEmail", - "description": null, - "args": [ - { - "name": "tokenValue", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "dimensions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AssetDimensionsInput", + "ofType": null }, - { - "name": "customerResetMyPassword", - "description": null, - "args": [ - { - "name": "tokenValue", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "newPassword", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "contentType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "createInventoryEntry", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InventoryEntryDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "InventoryEntry", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AssetDimensionsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "width", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updateInventoryEntry", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InventoryEntryUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "InventoryEntry", + "defaultValue": null + }, + { + "name": "height", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteInventoryEntry", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "InventoryEntry", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CategoryUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addAsset", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCategoryAsset", + "ofType": null }, - { - "name": "createCart", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CartDraft", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "changeAssetName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryAssetName", + "ofType": null }, - { - "name": "updateCart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CartUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "changeAssetOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryAssetOrder", + "ofType": null }, - { - "name": "deleteCart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "personalDataErasure", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeOrderHint", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryOrderHint", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeSlug", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCategorySlug", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeParent", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryParent", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeAsset", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCategoryAsset", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetSources", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetSources", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetTags", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetTags", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMetaDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryMetaDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMetaKeywords", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryMetaKeywords", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMetaTitle", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryMetaTitle", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setExternalId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCategoryExternalId", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCategoryAsset", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "position", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "asset", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AssetDraftInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryAssetName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "replicateCart", - "description": null, - "args": [ - { - "name": "reference", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "createMyCart", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MyCartDraft", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryAssetOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "assetOrder", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "KeyReferenceInput", + "name": "String", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updateMyCart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MyCartUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryOrderHint", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "orderHint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteMyCart", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCategorySlug", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "slug", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null - }, - "defaultValue": null + } } - ], - "type": { - "kind": "OBJECT", - "name": "Cart", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCategoryParent", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "parent", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createOrderFromCart", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrderCartCommand", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Order", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCategoryAsset", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updateOrder", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrderUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteOrder", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "personalDataErasure", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "Order", + } + }, + "defaultValue": null + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createMyOrderFromCart", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrderMyCartCommand", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "Beta feature. The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.", - "type": { - "kind": "SCALAR", - "name": "KeyReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetSources", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sources", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AssetSourceInput", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "Order", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createShoppingList", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShoppingListDraft", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": "[]" + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryAssetTags", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "tags", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "ShoppingList", + } + }, + "defaultValue": "[]" + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updateShoppingList", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShoppingListUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "ShoppingList", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteShoppingList", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "personalDataErasure", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "ShoppingList", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createMyShoppingList", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MyShoppingListDraft", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryMetaDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "metaDescription", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "ShoppingList", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updateMyShoppingList", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MyShoppingListUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryMetaKeywords", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "metaKeywords", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "ShoppingList", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deleteMyShoppingList", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShoppingList", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateProject", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectSettingsUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectProjection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createStore", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateStore", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Store", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "beta feature" - }, - { - "name": "updateStore", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "StoreUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Store", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "beta feature" - }, - { - "name": "deleteStore", - "description": null, - "args": [ - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "Queries with specified ID", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "Queries with specified key", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Store", - "ofType": null - }, - "isDeprecated": true, - "deprecationReason": "beta feature" - }, - { - "name": "createApiClient", - "description": null, - "args": [ - { - "name": "draft", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateApiClient", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "APIClientWithSecret", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteApiClient", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "APIClientWithoutSecret", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomerGroupDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "groupName", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryMetaTitle", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "metaTitle", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "typeId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCategoryExternalId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChannelDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fields", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "roles", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", + "kind": "ENUM", + "name": "ChannelRole", "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "typeId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "description": "A key-value pair representing the field name and value of one single custom field.\n\nThe value of this custom field consists of escaped JSON based on the FieldDefinition of the Type.\n\nExamples for `value`:\n\n* FieldType `String`: `\"\\\"This is a string\\\"\"`\n* FieldType `DateTimeType`: `\"\\\"2001-09-11T14:00:00.000Z\\\"\"`\n* FieldType `Number`: `\"4\"`\n* FieldType `Set` with an elementType of `String`: `\"[\\\"This is a string\\\", \\\"This is another string\\\"]\"`\n* FieldType `Reference`: `\"{\\\"id\\\", \\\"b911b62d-353a-4388-93ee-8d488d9af962\\\", \\\"typeId\\\", \\\"product\\\"}\"`\n", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": "The value of this custom field consists of escaped JSON based on the FieldDefinition of the Type.\n\nExamples for `value`:\n\n* FieldType `String`: `\"\\\"This is a string\\\"\"`\n* FieldType `DateTimeType`: `\"\\\"2001-09-11T14:00:00.000Z\\\"\"`\n* FieldType `Number`: `\"4\"`\n* FieldType `Set` with an elementType of `String`: `\"[\\\"This is a string\\\", \\\"This is another string\\\"]\"`\n* FieldType `Reference`: `\"{\\\"id\\\", \\\"b911b62d-353a-4388-93ee-8d488d9af962\\\", \\\"typeId\\\", \\\"product\\\"}\"`\n", - "type": { + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomerGroupUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCustomerGroupName", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerGroupKey", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerGroupCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerGroupCustomField", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCustomerGroupName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerGroupKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerGroupCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "typeId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "geoLocation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GeometryInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "salutation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "firstName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streetName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "streetNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "additionalStreetInfo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "postalCode", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "city", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "region", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "country", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Country", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "company", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "department", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "building", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apartment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pOBox", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "phone", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "mobile", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fax", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "additionalAddressInfo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GeometryInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerGroupCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "coordinates", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CategoryDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChannelUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addRoles", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddChannelRoles", + "ofType": null }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeChannelDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeChannelKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeChannelName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeRoles", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveChannelRoles", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetChannelAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetChannelCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetChannelCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setGeoLocation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetChannelGeoLocation", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setRoles", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetChannelRoles", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddChannelRoles", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "roles", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "ENUM", + "name": "ChannelRole", "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "slug", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeChannelDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "externalId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeChannelKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "metaTitle", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeChannelName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "metaDescription", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveChannelRoles", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "roles", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "ENUM", + "name": "ChannelRole", "ofType": null } } - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetChannelAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetChannelCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetChannelCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetChannelGeoLocation", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "geoLocation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GeometryInput", + "ofType": null }, - { - "name": "metaKeywords", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetChannelRoles", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "roles", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "ENUM", + "name": "ChannelRole", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "orderHint", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "parent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "attributeDefinitions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttributeDefinitionDraft", + "ofType": null + } + } }, - { - "name": "assets", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttributeDefinitionDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttributeTypeDraft", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -29401,99 +37178,421 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AssetDraftInput", - "ofType": null - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null + "name": "LocalizedStringItemInputType", + "ofType": null + } } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "isRequired", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "attributeConstraint", + "description": null, + "type": { + "kind": "ENUM", + "name": "AttributeConstraint", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "inputTip", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AssetDraftInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "inputHint", + "description": null, + "type": { + "kind": "ENUM", + "name": "TextInputHint", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isSearchable", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttributeTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "set", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AttributeSetTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "money", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "time", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "datetime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "boolean", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reference", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceTypeDefinitionDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EnumTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lenum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizableEnumTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ltext", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttributeSetTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "elementType", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttributeSetElementTypeDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AttributeSetElementTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "text", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "money", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "time", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "datetime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "boolean", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reference", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceTypeDefinitionDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "enum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EnumTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lenum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizableEnumTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "ltext", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SimpleAttributeTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ReferenceTypeDefinitionDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "referenceTypeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "description", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EnumTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "values", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -29501,27 +37600,71 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "name": "PlainEnumValueDraft", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlainEnumValueDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "sources", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LocalizableEnumTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "values", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -29529,734 +37672,1526 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AssetSourceInput", + "name": "LocalizedEnumValueDraft", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "tags", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LocalizedEnumValueDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AssetSourceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "uri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductTypeUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "setKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeAttributeDefinition", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "removeAttributeDefinition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLabel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeLabel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setInputTip", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "setInputTip", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeIsSearchable", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeIsSearchable", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeInputHint", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeInputHint", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addAttributeDefinition", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "addAttributeDefinition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeAttributeOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeAttributeOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeAttributeOrderByName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeAttributeOrderByName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeEnumValues", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "removeEnumValues", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addPlainEnumValue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "addPlainEnumValue", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changePlainEnumValueLabel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changePlainEnumValueLabel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changePlainEnumValueOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changePlainEnumValueOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addLocalizedEnumValue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "addLocalizedEnumValue", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLocalizedEnumValueLabel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeLocalizedEnumValueLabel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLocalizedEnumValueOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeLocalizedEnumValueOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeAttributeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeAttributeName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeEnumKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "changeEnumKey", + "ofType": null }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "setKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "dimensions", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AssetDimensionsInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "contentType", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "removeAttributeDefinition", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AssetDimensionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "width", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeLabel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } } - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "setInputTip", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "height", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "inputTip", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CategoryUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addAsset", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCategoryAsset", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeAssetName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryAssetName", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeIsSearchable", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeAssetOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryAssetOrder", + "defaultValue": null + }, + { + "name": "isSearchable", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryName", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeInputHint", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeOrderHint", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryOrderHint", + } + }, + "defaultValue": null + }, + { + "name": "newValue", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TextInputHint", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeSlug", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCategorySlug", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "addAttributeDefinition", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeDefinition", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttributeDefinitionDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeAttributeOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeDefinitions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AttributeDefinitionDraft", + "ofType": null + } + } + } }, - { - "name": "changeParent", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryParent", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeAttributeOrderByName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeNames", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "removeEnumValues", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "keys", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, - { - "name": "removeAsset", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCategoryAsset", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "addPlainEnumValue", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setAssetCustomField", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetCustomField", + "name": "PlainEnumValueDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setAssetCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetCustomType", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changePlainEnumValueLabel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setAssetDescription", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "newValue", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetDescription", + "name": "PlainEnumValueDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setAssetKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetKey", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changePlainEnumValueOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "values", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PlainEnumValueDraft", + "ofType": null + } + } + } }, - { - "name": "setAssetSources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetSources", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "addLocalizedEnumValue", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setAssetTags", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetTags", + "name": "LocalizedEnumValueDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryCustomField", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeLocalizedEnumValueLabel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomType", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "newValue", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCategoryCustomType", + "name": "LocalizedEnumValueDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryDescription", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeLocalizedEnumValueOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "values", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedEnumValueDraft", + "ofType": null + } + } + } }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryKey", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeAttributeName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setMetaDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryMetaDescription", + "defaultValue": null + }, + { + "name": "newAttributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setMetaKeywords", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryMetaKeywords", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "changeEnumKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "attributeName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setMetaTitle", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryMetaTitle", + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setExternalId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCategoryExternalId", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCategoryAsset", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "position", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "newKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "asset", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TypeDefinitionDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "AssetDraftInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryAssetName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryAssetOrder", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "assetOrder", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryOrderHint", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "orderHint", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCategorySlug", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "slug", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "resourceTypeIds", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCategoryParent", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "parent", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "fieldDefinitions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "FieldDefinitionInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCategoryAsset", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FieldDefinitionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FieldTypeInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } } - }, - "defaultValue": null - }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "assetId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "required", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "typeId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + } + }, + "defaultValue": null + }, + { + "name": "inputHint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TextInputHint", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FieldTypeInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "Set", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldTypeSetTypeDraft", + "ofType": null }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "String", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "LocalizedString", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Number", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Money", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Date", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Time", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "DateTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Boolean", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Enum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldTypeEnumTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "LocalizedEnum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldTypeLocalizedEnumTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Reference", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldTypeReferenceTypeDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FieldTypeSetTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "elementType", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FieldTypeSetElementTypeDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FieldTypeSetElementTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "String", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "LocalizedString", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Number", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Money", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Date", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Time", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "DateTime", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Boolean", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Enum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldTypeEnumTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "LocalizedEnum", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldTypeLocalizedEnumTypeDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Reference", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FieldTypeReferenceTypeDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SimpleFieldTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "fields", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FieldTypeEnumTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "values", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -30264,48 +39199,71 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", + "name": "EnumValueInput", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "assetKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EnumValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "assetId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FieldTypeLocalizedEnumTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "values", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -30313,83 +39271,46 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "name": "LocalizedEnumValueInput", "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "assetKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LocalizedEnumValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetSources", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "sources", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -30397,270 +39318,411 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AssetSourceInput", + "name": "LocalizedStringItemInputType", "ofType": null } } - }, - "defaultValue": "[]" + } }, - { - "name": "assetKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FieldTypeReferenceTypeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "referenceTypeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TypeUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addEnumValue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddTypeEnumValue", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addFieldDefinition", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddTypeFieldDefinition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addLocalizedEnumValue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddTypeLocalizedEnumValue", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeEnumValueLabel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeEnumValueLabel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeEnumValueOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeEnumValueOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLabel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeLabel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeFieldDefinitionOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeFieldDefinitionOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeInputHint", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeInputHint", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLocalizedEnumValueLabel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeLocalizedEnumValueLabel", + "ofType": null }, - { - "name": "assetId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "changeLocalizedEnumValueOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeLocalizedEnumValueOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeFieldDefinition", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveTypeFieldDefinition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetTypeDescription", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddTypeEnumValue", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryAssetTags", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": "[]" + } }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EnumValueInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "assetId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddTypeFieldDefinition", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldDefinition", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FieldDefinitionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddTypeLocalizedEnumValue", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null + } }, - { - "name": "type", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "LocalizedEnumValueInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeEnumValueLabel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "EnumValueInput", + "ofType": null + } }, - { - "name": "typeId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeEnumValueOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "keys", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeLabel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryMetaDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "metaDescription", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryMetaKeywords", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "metaKeywords", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -30672,128 +39734,211 @@ "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryMetaTitle", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "metaTitle", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeFieldDefinitionOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldNames", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCategoryExternalId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChannelDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "roles", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ChannelRole", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeInputHint", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "inputHint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TextInputHint", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeLocalizedEnumValueLabel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedEnumValueInput", + "ofType": null + } }, - { - "name": "name", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeLocalizedEnumValueOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "keys", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "description", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeTypeName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -30805,932 +39950,2002 @@ "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "geoLocation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GeometryInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveTypeFieldDefinition", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fieldName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetTypeDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } }, - { - "name": "salutation", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingMethodDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "firstName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "lastName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "localizedDescription", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } }, - { - "name": "streetName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "streetNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "zoneRates", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ZoneRateDraft", + "ofType": null + } + } }, - { - "name": "additionalStreetInfo", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "isDefault", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "postalCode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "city", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "region", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ZoneRateDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "zone", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "shippingRates", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ShippingRateDraft", + "ofType": null + } + } + }, + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingRateDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MoneyDraft", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "freeAbove", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MoneyDraft", + "ofType": null }, - { - "name": "country", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "tiers", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Country", + "kind": "INPUT_OBJECT", + "name": "ShippingRatePriceTierDraft", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "company", - "description": null, - "type": { + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MoneyDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "currencyCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "centAmount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "department", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingRatePriceTierDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "CartValue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ShippingRatePriceTierCartValueDraft", + "ofType": null }, - { - "name": "building", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "CartClassification", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ShippingRatePriceTierCartClassificationDraft", + "ofType": null }, - { - "name": "apartment", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "CartScore", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ShippingRatePriceTierCartScoreDraft", + "ofType": null }, - { - "name": "pOBox", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingRatePriceTierCartValueDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "minimumCentAmount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "phone", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MoneyDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "mobile", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingRatePriceTierCartClassificationDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MoneyDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "fax", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingRatePriceTierCartScoreDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "score", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MoneyDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceFunction", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PriceFunctionDraft", + "ofType": null }, - { - "name": "additionalAddressInfo", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PriceFunctionDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "function", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "externalId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "currencyCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Currency", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GeometryInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "type", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingMethodUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addShippingRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddShippingMethodShippingRate", + "ofType": null }, - { - "name": "coordinates", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChannelUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addRoles", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "addZone", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddShippingMethodZone", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeIsDefault", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShippingMethodIsDefault", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShippingMethodName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTaxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShippingMethodTaxCategory", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeShippingRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveShippingMethodShippingRate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeZone", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveShippingMethodZone", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShippingMethodDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShippingMethodKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLocalizedDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShippingMethodLocalizedDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setPredicate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShippingMethodPredicate", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddShippingMethodShippingRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "zone", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "AddChannelRoles", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeDescription", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "shippingRate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ChangeChannelDescription", + "name": "ShippingRateDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddShippingMethodZone", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "zone", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ChangeChannelKey", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeChannelName", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShippingMethodIsDefault", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isDefault", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeRoles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveChannelRoles", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShippingMethodName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setAddress", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShippingMethodTaxCategory", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetChannelAddress", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomField", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveShippingMethodShippingRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "zone", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetChannelCustomField", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomType", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "shippingRate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetChannelCustomType", + "name": "ShippingRateDraft", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setGeoLocation", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveShippingMethodZone", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "zone", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetChannelGeoLocation", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setRoles", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetChannelRoles", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddChannelRoles", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "roles", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ChannelRole", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeChannelDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeChannelKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShippingMethodDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShippingMethodKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShippingMethodLocalizedDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "localizedDescription", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeChannelName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveChannelRoles", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "roles", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ChannelRole", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetChannelAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShippingMethodPredicate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "predicate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateZone", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetChannelCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locations", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ZoneLocation", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ZoneLocation", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "country", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Country", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetChannelCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null + } }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ZoneUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addLocation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddZoneLocation", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeZoneName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeLocation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveZoneLocation", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetZoneDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetZoneKey", + "ofType": null }, - { - "name": "typeKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddZoneLocation", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "location", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ZoneLocation", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeZoneName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveZoneLocation", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "location", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ZoneLocation", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetZoneDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetZoneKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetChannelGeoLocation", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "geoLocation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GeometryInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetChannelRoles", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "roles", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ChannelRole", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductTypeDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "rates", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TaxRateDraft", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TaxRateDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "amount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "includedInPrice", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "country", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "subRates", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SubRateDraft", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SubRateDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "attributeDefinitions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AttributeDefinitionDraft", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AttributeDefinitionDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "type", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "amount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryChangeName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TaxCategorySetDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryAddTaxRate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "replaceTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryReplaceTaxRate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryRemoveTaxRate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetTaxCategoryKey", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryChangeName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TaxCategorySetDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryAddTaxRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxRate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TaxRateDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryReplaceTaxRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxRateId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "taxRate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TaxRateDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TaxCategoryRemoveTaxRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxRateId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetTaxCategoryKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DiscountCodeDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "code", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AttributeTypeDraft", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "name", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + }, + { + "name": "cartDiscounts", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null } } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "isActive", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "maxApplications", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "maxApplicationsPerCustomer", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cartPredicate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "isRequired", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "groups", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "attributeConstraint", - "description": null, - "type": { - "kind": "ENUM", - "name": "AttributeConstraint", + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "typeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DiscountCodeUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changeCartDiscounts", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeDiscountCodeCartDiscounts", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeGroups", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeDiscountCodeGroups", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeIsActive", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeDiscountCodeIsActive", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCartPredicate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeCartPredicate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMaxApplications", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeMaxApplications", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMaxApplicationsPerCustomer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeMaxApplicationsPerCustomer", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setValidFrom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeValidFrom", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setValidFromAndUntil", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeValidFromAndUntil", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setValidUntil", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeValidUntil", + "ofType": null }, - { - "name": "inputTip", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeDiscountCodeCartDiscounts", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cartDiscounts", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -31738,895 +41953,1966 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "name": "ReferenceInput", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "inputHint", - "description": null, - "type": { - "kind": "ENUM", - "name": "TextInputHint", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isSearchable", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeDiscountCodeGroups", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "groups", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AttributeTypeDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "set", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AttributeSetTypeDraft", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "text", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "money", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeDiscountCodeIsActive", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isActive", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "date", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeCartPredicate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cartPredicate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "time", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "datetime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "boolean", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null + } + } }, - { - "name": "reference", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceTypeDefinitionDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "enum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EnumTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "lenum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizableEnumTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "ltext", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AttributeSetTypeDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "elementType", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AttributeSetElementTypeDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AttributeSetElementTypeDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "text", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "name": "LocalizedStringItemInputType", + "ofType": null + } + } }, - { - "name": "number", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeMaxApplications", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "maxApplications", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null }, - { - "name": "money", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeMaxApplicationsPerCustomer", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "maxApplicationsPerCustomer", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null }, - { - "name": "date", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } }, - { - "name": "time", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeValidFrom", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "datetime", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeValidFromAndUntil", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "boolean", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "reference", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceTypeDefinitionDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetDiscountCodeValidUntil", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "enum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EnumTypeDraft", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartDiscountDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartDiscountValueInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "cartPredicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "lenum", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizableEnumTypeDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "target", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CartDiscountTargetInput", + "ofType": null }, - { - "name": "ltext", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SimpleAttributeTypeDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dummy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ReferenceTypeDefinitionDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "referenceTypeId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EnumTypeDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "values", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + }, + { + "name": "sortOrder", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlainEnumValueDraft", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PlainEnumValueDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LocalizableEnumTypeDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "values", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedEnumValueDraft", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LocalizedEnumValueDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + }, + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stackingMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "StackingMode", + "ofType": null + }, + "defaultValue": "Stacking" + }, + { + "name": "requiresDiscountCode", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + }, + { + "name": "isActive", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartDiscountValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "relative", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RelativeDiscountValueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "absolute", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AbsoluteDiscountValueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "giftLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GiftLineItemValueInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RelativeDiscountValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "permyriad", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AbsoluteDiscountValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "money", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "MoneyInput", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductTypeUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "setKey", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeName", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MoneyInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "currencyCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "centAmount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeDescription", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GiftLineItemValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "product", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "changeDescription", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeAttributeDefinition", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "removeAttributeDefinition", + "defaultValue": null + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeLabel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeLabel", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "setInputTip", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "setInputTip", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "changeIsSearchable", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeIsSearchable", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartDiscountTargetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItems", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LineItemsTargetInput", + "ofType": null }, - { - "name": "changeInputHint", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeInputHint", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "customLineItems", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomLineItemsTargetInput", + "ofType": null }, - { - "name": "addAttributeDefinition", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "addAttributeDefinition", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "shipping", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ShippingTargetInput", + "ofType": null }, - { - "name": "changeAttributeOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeAttributeOrder", + "defaultValue": null + }, + { + "name": "multiBuyLineItems", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MultiBuyLineItemsTargetInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "multiBuyCustomLineItems", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MultiBuyCustomLineItemsTargetInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LineItemsTargetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeAttributeOrderByName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeAttributeOrderByName", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomLineItemsTargetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeEnumValues", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "removeEnumValues", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingTargetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MultiBuyLineItemsTargetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addPlainEnumValue", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "addPlainEnumValue", + "defaultValue": null + }, + { + "name": "triggerQuantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changePlainEnumValueLabel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changePlainEnumValueLabel", + "defaultValue": null + }, + { + "name": "discountedQuantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changePlainEnumValueOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changePlainEnumValueOrder", + "defaultValue": null + }, + { + "name": "maxOccurrence", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "selectionMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "SelectionMode", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SelectionMode", + "description": "In order to decide which of the matching items will actually be discounted", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "MostExpensive", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Cheapest", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MultiBuyCustomLineItemsTargetInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addLocalizedEnumValue", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "addLocalizedEnumValue", + "defaultValue": null + }, + { + "name": "triggerQuantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeLocalizedEnumValueLabel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeLocalizedEnumValueLabel", + "defaultValue": null + }, + { + "name": "discountedQuantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeLocalizedEnumValueOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeLocalizedEnumValueOrder", + "defaultValue": null + }, + { + "name": "maxOccurrence", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "selectionMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "SelectionMode", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartDiscountUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changeCartPredicate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountCartPredicate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeIsActive", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountIsActive", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeRequiresDiscountCode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountRequiresDiscountCode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeSortOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountSortOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeStackingMode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountStackingMode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTarget", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountTarget", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeValue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountValue", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setValidFrom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountValidFrom", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setValidFromAndUntil", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountValidFromAndUntil", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setValidUntil", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountValidUntil", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountCartPredicate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cartPredicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeAttributeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeAttributeName", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountIsActive", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isActive", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeEnumKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "changeEnumKey", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "setKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "removeAttributeDefinition", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountRequiresDiscountCode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "requiresDiscountCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountSortOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sortOrder", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountStackingMode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "stackingMode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "StackingMode", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountTarget", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "target", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartDiscountTargetInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartDiscountValue", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartDiscountValueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeLabel", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountValidFrom", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountValidFromAndUntil", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartDiscountValidUntil", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductDiscountDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProductDiscountValueInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "sortOrder", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "setInputTip", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isActive", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductDiscountValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "relative", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RelativeDiscountValueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "absolute", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AbsoluteDiscountValueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "external", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalDiscountValueInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ExternalDiscountValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductDiscountUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changeIsActive", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountIsActive", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changePredicate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountPredicate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeSortOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountSortOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeValue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountValue", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setValidFrom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountValidFrom", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setValidFromAndUntil", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountValidFromAndUntil", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setValidUntil", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountValidUntil", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountIsActive", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "isActive", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - { - "name": "inputTip", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -32638,697 +43924,1008 @@ "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeIsSearchable", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountPredicate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "predicate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountSortOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sortOrder", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductDiscountValue", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProductDiscountValueInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "isSearchable", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountValidFrom", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountValidFromAndUntil", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountValidUntil", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeInputHint", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "productType", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "newValue", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "categories", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "TextInputHint", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "addAttributeDefinition", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeDefinition", - "description": null, - "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "categoryOrderHints", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AttributeDefinitionDraft", + "name": "CategoryOrderHintInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeAttributeOrder", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeDefinitions", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "metaTitle", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AttributeDefinitionDraft", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeAttributeOrderByName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeNames", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "metaDescription", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "removeEnumValues", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "metaKeywords", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "keys", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "masterVariant", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProductVariantInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "variants", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "addPlainEnumValue", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProductVariantInput", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": "[]" + }, + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "searchKeywords", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PlainEnumValueDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changePlainEnumValueLabel", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "SearchKeywordInput", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "publish", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CategoryOrderHintInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "uuid", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderHint", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductVariantInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "newValue", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "prices", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "PlainEnumValueDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changePlainEnumValueOrder", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "ProductPriceDataInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "values", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PlainEnumValueDraft", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "addLocalizedEnumValue", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "images", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ImageInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "attributes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedEnumValueDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeLocalizedEnumValueLabel", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "ProductAttributeInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "newValue", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "assets", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedEnumValueDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeLocalizedEnumValueOrder", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "AssetDraftInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "values", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedEnumValueDraft", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeAttributeName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductPriceDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null + } }, - { - "name": "newAttributeName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "changeEnumKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "attributeName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "country", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null }, - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "customerGroup", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null }, - { - "name": "newKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingMethodDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "channel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validFrom", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "validUntil", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tiers", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProductPriceTierInput", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": "[]" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "centPrecision", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MoneyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "highPrecision", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "HighPrecisionMoneyInput", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "HighPrecisionMoneyInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "currencyCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "preciseAmount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "fractionDigits", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "centAmount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductPriceTierInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "minimumQuantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "url", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "taxCategory", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "zoneRates", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ZoneRateDraft", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + }, + { + "name": "dimensions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DimensionsInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DimensionsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "width", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "isDefault", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "height", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "predicate", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductAttributeInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ZoneRateDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "zone", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "shippingRates", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SearchKeywordInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "keywords", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -33336,1000 +44933,1483 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ShippingRateDraft", - "ofType": null - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingRateDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "price", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MoneyDraft", - "ofType": null + "name": "CustomSuggestTokenizerInput", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "freeAbove", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MoneyDraft", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomSuggestTokenizerInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "text", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "tiers", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingRatePriceTierDraft", - "ofType": null - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MoneyDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "currencyCode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "suggestTokenizer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseSearchKeywordInput", + "ofType": null }, - { - "name": "centAmount", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BaseSearchKeywordInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "whitespace", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "WhitespaceSuggestTokenizerInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomSuggestTokenizerInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "WhitespaceSuggestTokenizerInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "moveImageToPosition", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MoveProductImageToPosition", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setSearchKeywords", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetSearchKeywords", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "revertStagedChanges", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RevertStagedChanges", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "revertStagedVariantChanges", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RevertStagedVariantChanges", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "publish", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PublishProduct", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "unpublish", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UnpublishProduct", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transitionState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransitionProductState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addAsset", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddProductAsset", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addExternalImage", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddProductExternalImage", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddProductPrice", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addToCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddProductToCategory", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addVariant", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddProductVariant", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeAssetName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductAssetName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeAssetOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductAssetOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeMasterVariant", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductMasterVariant", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeImageLabel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductImageLabel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changePrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductPrice", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeSlug", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProductSlug", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeAsset", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveProductAsset", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeFromCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveProductFromCategory", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeImage", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveProductImage", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removePrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveProductPrice", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeVariant", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveProductVariant", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetSources", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetSources", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAssetTags", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetTags", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCategoryOrderHint", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductCategoryOrderHint", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDiscountedPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountedPrice", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAttribute", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductAttribute", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAttributeInAllVariants", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductAttributeInAllVariants", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setImageLabel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductImageLabel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMetaAttributes", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductMetaAttributes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMetaDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductMetaDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMetaKeywords", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductMetaKeywords", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMetaTitle", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductMetaTitle", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setProductPriceCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductPriceCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setProductPriceCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductPriceCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setPrices", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductPrices", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setSku", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductSku", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setTaxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductTaxCategory", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setProductVariantKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProductVariantKey", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MoveProductImageToPosition", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "imageUrl", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "position", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetSearchKeywords", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "searchKeywords", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SearchKeywordInput", + "ofType": null + } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingRatePriceTierDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "CartValue", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RevertStagedChanges", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RevertStagedVariantChanges", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PublishProduct", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "scope", + "description": null, + "type": { + "kind": "ENUM", + "name": "PublishScope", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PublishScope", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "All", + "description": "Publishes the complete staged projection", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Prices", + "description": "Publishes only prices on the staged projection", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UnpublishProduct", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransitionProductState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ShippingRatePriceTierCartValueDraft", + "name": "ReferenceInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "force", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProductAsset", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "position", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "asset", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AssetDraftInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProductExternalImage", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "image", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ImageInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProductPrice", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "CartClassification", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ShippingRatePriceTierCartClassificationDraft", + "name": "ProductPriceDataInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null }, - { - "name": "CartScore", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProductToCategory", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "category", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ShippingRatePriceTierCartScoreDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingRatePriceTierCartValueDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "minimumCentAmount", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null + "name": "ResourceIdentifierInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "orderHint", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "price", - "description": null, - "type": { + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddProductVariant", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "assets", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "MoneyDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingRatePriceTierCartClassificationDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "AssetDraftInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "price", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "attributes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "MoneyDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingRatePriceTierCartScoreDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "score", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", + "name": "ProductAttributeInput", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "price", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MoneyDraft", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "priceFunction", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PriceFunctionDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PriceFunctionDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "function", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "images", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ImageInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "currencyCode", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "prices", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Currency", + "kind": "INPUT_OBJECT", + "name": "ProductPriceDataInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingMethodUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addShippingRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddShippingMethodShippingRate", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addZone", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddShippingMethodZone", - "ofType": null - }, - "defaultValue": null + "defaultValue": "[]" + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "changeIsDefault", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShippingMethodIsDefault", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShippingMethodName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "changeTaxCategory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShippingMethodTaxCategory", - "ofType": null - }, - "defaultValue": null + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductAssetName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "removeShippingRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveShippingMethodShippingRate", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "removeZone", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveShippingMethodZone", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShippingMethodDescription", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShippingMethodKey", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "setPredicate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShippingMethodPredicate", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddShippingMethodShippingRate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "zone", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": "true" + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "shippingRate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingRateDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddShippingMethodZone", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "zone", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeShippingMethodIsDefault", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "isDefault", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeShippingMethodName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeShippingMethodTaxCategory", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "taxCategory", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveShippingMethodShippingRate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "zone", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "shippingRate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingRateDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveShippingMethodZone", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "zone", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShippingMethodDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShippingMethodKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShippingMethodPredicate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "predicate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateZone", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductAssetOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "locations", - "description": null, - "type": { + "defaultValue": "true" + }, + { + "name": "assetOrder", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ZoneLocation", - "ofType": null - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ZoneLocation", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "country", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Country", - "ofType": null + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ZoneUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addLocation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddZoneLocation", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductMasterVariant", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeZoneName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "removeLocation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveZoneLocation", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetZoneDescription", - "ofType": null - }, - "defaultValue": null + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductImageLabel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetZoneKey", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddZoneLocation", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "location", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ZoneLocation", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeZoneName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveZoneLocation", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "location", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ZoneLocation", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetZoneDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetZoneKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "imageUrl", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "rates", - "description": null, - "type": { + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -34337,100 +46417,117 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaxRateDraft", + "name": "LocalizedStringItemInputType", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaxRateDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "amount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - }, - "defaultValue": null + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductPrice", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "priceId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "includedInPrice", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "country", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Country", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProductPriceDataInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "subRates", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProductSlug", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "slug", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -34438,294 +46535,822 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SubRateDraft", - "ofType": null - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SubRateDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "LocalizedStringItemInputType", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "amount", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryChangeName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaxCategorySetDescription", - "ofType": null - }, - "defaultValue": null + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveProductAsset", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "addTaxRate", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveProductFromCategory", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "category", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "TaxCategoryAddTaxRate", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "replaceTaxRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryReplaceTaxRate", + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveProductImage", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "imageUrl", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeTaxRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryRemoveTaxRate", + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveProductPrice", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "priceId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ProductPriceDataInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveProductVariant", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetTaxCategoryKey", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryChangeName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaxCategorySetDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryAddTaxRate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "taxRate", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaxRateDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryReplaceTaxRate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "taxRateId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null }, - { - "name": "taxRate", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "TaxRateDraft", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaxCategoryRemoveTaxRate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "taxRateId", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetSources", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "sources", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AssetSourceInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetTaxCategoryKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DiscountCodeDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "code", - "description": null, - "type": { + } + }, + "defaultValue": "[]" + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductAssetTags", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "tags", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -34733,627 +47358,796 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null + } }, - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": "[]" + }, + { + "name": "assetKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "cartDiscounts", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "assetId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "isActive", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductCategoryOrderHint", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "categoryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" + } }, - { - "name": "maxApplications", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "orderHint", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "maxApplicationsPerCustomer", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "cartPredicate", - "description": null, - "type": { + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductDiscountedPrice", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "priceId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "discounted", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "DiscountedProductPriceValueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "custom", - "description": null, - "type": { + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DiscountedProductPriceValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", + "name": "BaseMoneyInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "validFrom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", + "defaultValue": null + }, + { + "name": "discount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductAttribute", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "validUntil", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "groups", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "typeId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductAttributeInAllVariants", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "id", - "description": null, - "type": { + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DiscountCodeUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "changeCartDiscounts", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeDiscountCodeCartDiscounts", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeGroups", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeDiscountCodeGroups", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeIsActive", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeDiscountCodeIsActive", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "setCartPredicate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeCartPredicate", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductImageLabel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeDescription", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setMaxApplications", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeMaxApplications", + "defaultValue": null + }, + { + "name": "imageUrl", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setMaxApplicationsPerCustomer", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeMaxApplicationsPerCustomer", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "label", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "setValidFrom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeValidFrom", - "ofType": null - }, - "defaultValue": null + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setValidFromAndUntil", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeValidFromAndUntil", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductMetaAttributes", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "metaDescription", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } }, - { - "name": "setValidUntil", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeValidUntil", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeDiscountCodeCartDiscounts", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "cartDiscounts", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "metaKeywords", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeDiscountCodeGroups", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "groups", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "metaTitle", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeDiscountCodeIsActive", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "isActive", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductMetaDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "metaDescription", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeCartPredicate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "cartPredicate", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductMetaKeywords", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "metaKeywords", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductMetaTitle", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "metaTitle", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductPriceCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "priceId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "typeKey", - "description": null, - "type": { + "defaultValue": "true" + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductPriceCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "priceId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeMaxApplications", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "maxApplications", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeMaxApplicationsPerCustomer", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "maxApplicationsPerCustomer", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductPrices", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "prices", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -35361,1422 +48155,2072 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "name": "ProductPriceDataInput", "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeValidFrom", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "validFrom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeValidFromAndUntil", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "validFrom", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductSku", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductTaxCategory", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProductVariantKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "staged", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "validUntil", - "description": null, - "type": { + "defaultValue": "true" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StateDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetDiscountCodeValidUntil", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "validUntil", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "StateType", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartDiscountDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CartDiscountValueInput", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "cartPredicate", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "target", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CartDiscountTargetInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "initial", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "sortOrder", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "roles", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "StateRole", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "name", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "transitions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StateUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addRoles", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStateRoles", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeInitial", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStateInitial", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStateKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStateType", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "removeRoles", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStateRoles", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStateDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStateName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setRoles", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStateRoles", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setTransitions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStateTransitions", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStateRoles", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "roles", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "ENUM", + "name": "StateRole", "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "validFrom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "validUntil", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "stackingMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "StackingMode", - "ofType": null - }, - "defaultValue": "Stacking" - }, - { - "name": "requiresDiscountCode", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" + } }, - { - "name": "isActive", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStateInitial", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "initial", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Boolean", "ofType": null - }, - "defaultValue": "true" - }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStateKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartDiscountValueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "relative", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RelativeDiscountValueInput", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "absolute", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AbsoluteDiscountValueInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStateType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "StateType", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "giftLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GiftLineItemValueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RelativeDiscountValueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "permyriad", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AbsoluteDiscountValueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "money", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStateRoles", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "roles", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MoneyInput", - "ofType": null - } + "kind": "ENUM", + "name": "StateRole", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MoneyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "currencyCode", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStateDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Currency", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "centAmount", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStateName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GiftLineItemValueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "product", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStateRoles", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "roles", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "StateRole", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "variantId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStateTransitions", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "transitions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "distributionChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomerSignUpDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "supplyChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartDiscountTargetInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItems", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LineItemsTargetInput", + "defaultValue": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "customLineItems", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomLineItemsTargetInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "firstName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "shipping", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShippingTargetInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "lastName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "multiBuyLineItems", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MultiBuyLineItemsTargetInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "middleName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "multiBuyCustomLineItems", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MultiBuyCustomLineItemsTargetInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LineItemsTargetInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomLineItemsTargetInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingTargetInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dummy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MultiBuyLineItemsTargetInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "triggerQuantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "dateOfBirth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "companyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "vatId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "discountedQuantity", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "addresses", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "INPUT_OBJECT", + "name": "AddressInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "maxOccurrence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": "[]" + }, + { + "name": "defaultBillingAddress", + "description": "The index of the address in the `addresses` list. The\n`defaultBillingAddressId` of the customer will be set to the ID of that address.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "selectionMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "SelectionMode", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SelectionMode", - "description": "In order to decide which of the matching items will actually be discounted", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "MostExpensive", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Cheapest", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MultiBuyCustomLineItemsTargetInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "predicate", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "defaultShippingAddress", + "description": "The index of the address in the `addresses` list. The\n`defaultShippingAddressId` of the customer will be set to the ID of that address.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingAddresses", + "description": "The indices of the shipping addresses in the `addresses` list. The\n`shippingAddressIds` of the `Customer` will be set to the IDs of that addresses.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "triggerQuantity", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "billingAddresses", + "description": "The indices of the billing addresses in the `addresses` list. The\n`billingAddressIds` of the customer will be set to the IDs of that addresses.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Long", + "name": "Int", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": "[]" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "salutation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "discountedQuantity", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "stores", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "maxOccurrence", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "customerNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "selectionMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "SelectionMode", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartDiscountUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "changeCartPredicate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountCartPredicate", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "anonymousCartId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "changeIsActive", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountIsActive", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "customerGroup", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "changeRequiresDiscountCode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountRequiresDiscountCode", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "isEmailVerified", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "changeSortOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountSortOrder", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "anonymousId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "changeStackingMode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountStackingMode", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomerSignInResult", + "description": null, + "fields": [ + { + "name": "customer", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Customer", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeTarget", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountTarget", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cart", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Cart", + "ofType": null }, - { - "name": "changeValue", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountValue", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomerSignInDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountCustomField", + "defaultValue": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "anonymousCartId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountDescription", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "anonymousCartSignInMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "AnonymousCartSignInMode", + "ofType": null }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountKey", - "ofType": null - }, - "defaultValue": null + "defaultValue": "MergeWithExistingCustomerCart" + }, + { + "name": "anonymousId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updateProductData", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AnonymousCartSignInMode", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "UseAsNewActiveCustomerCart", + "description": "The anonymous cart is used as new active customer cart. No `LineItem`s get merged.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MergeWithExistingCustomerCart", + "description": "`LineItem`s of the anonymous cart will be copied to the customer’s active cart that has been modified most recently.\n\nThe `CartState` of the anonymous cart gets changed to `Merged` while the\n`CartState` of the customer’s cart remains `Active`.\n\n`CustomLineItems` and `CustomFields` of the anonymous cart will not be copied to the customers cart.\n\nIf a `LineItem` in the anonymous cart matches an existing line item in the\ncustomer’s cart (same product ID and variant ID), the maximum quantity of both\nLineItems is used as the new quantity. In that case `CustomFields` on the\n`LineItem` of the anonymous cart will not be in the resulting `LineItem`.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomerUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCustomerAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addBillingAddressId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCustomerBillingAddressId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addShippingAddressId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCustomerShippingAddressId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addStore", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCustomerStore", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCustomerAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeEmail", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCustomerEmail", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeBillingAddressId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerBillingAddressId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeShippingAddressId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerShippingAddressId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeStore", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerStore", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCompanyName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerCompanyName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomerGroup", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerGroup", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLocale", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerLocale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomerNumber", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerNumber", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDateOfBirth", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerDateOfBirth", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDefaultBillingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerDefaultBillingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDefaultShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerDefaultShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setExternalId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerExternalId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setFirstName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerFirstName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLastName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerLastName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMiddleName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerMiddleName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setSalutation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerSalutation", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setStores", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerStores", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setTitle", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerTitle", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setVatId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerVatId", + "ofType": null }, - { - "name": "setValidFrom", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCustomerAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCartDiscountValidFrom", + "name": "AddressInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCustomerBillingAddressId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addressKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCustomerShippingAddressId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addressKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setValidFromAndUntil", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCustomerStore", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "store", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCartDiscountValidFromAndUntil", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCustomerAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addressKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setValidUntil", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCartDiscountValidUntil", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountCartPredicate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "cartPredicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountIsActive", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "isActive", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountRequiresDiscountCode", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "requiresDiscountCode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountSortOrder", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "sortOrder", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountStackingMode", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "stackingMode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "StackingMode", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountTarget", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "target", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CartDiscountTargetInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartDiscountValue", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CartDiscountValueInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "name": "AddressInput", + "ofType": null + } }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCustomerEmail", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addressKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerBillingAddressId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addressKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerShippingAddressId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addressKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "type", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerStore", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "store", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerCompanyName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "companyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountValidFrom", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "validFrom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountValidFromAndUntil", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "validFrom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "validUntil", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartDiscountValidUntil", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "validUntil", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductDiscountDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductDiscountValueInput", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "predicate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sortOrder", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerGroup", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customerGroup", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerLocale", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerNumber", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customerNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerDateOfBirth", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dateOfBirth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerDefaultBillingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addressKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerDefaultShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "addressKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerExternalId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerFirstName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "firstName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerLastName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lastName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerMiddleName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "middleName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerSalutation", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "salutation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerStores", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "stores", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -36784,637 +50228,1717 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "name": "ResourceIdentifierInput", "ofType": null } } - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerTitle", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "validFrom", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCustomerVatId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "vatId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomerPasswordToken", + "description": null, + "fields": [ + { + "name": "customerId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "validUntil", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expiresAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "isActive", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" + } }, - { - "name": "key", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductDiscountValueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "relative", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RelativeDiscountValueInput", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "absolute", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AbsoluteDiscountValueInput", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "external", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalDiscountValueInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExternalDiscountValueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dummy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductDiscountUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "changeIsActive", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountIsActive", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountName", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomerEmailToken", + "description": null, + "fields": [ + { + "name": "customerId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changePredicate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountPredicate", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expiresAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeSortOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountSortOrder", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeValue", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountValue", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountDescription", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountKey", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setValidFrom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountValidFrom", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setValidFromAndUntil", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountValidFromAndUntil", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Initiator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Versioned", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomerSignMeUpDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setValidUntil", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountValidUntil", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountIsActive", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "isActive", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "firstName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "middleName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "dateOfBirth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "companyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "vatId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addresses", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "AddressInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountPredicate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "predicate", - "description": null, - "type": { + } + }, + "defaultValue": "[]" + }, + { + "name": "defaultBillingAddress", + "description": "The index of the address in the `addresses` list. The\n`defaultBillingAddressId` of the customer will be set to the ID of that address.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "defaultShippingAddress", + "description": "The index of the address in the `addresses` list. The\n`defaultShippingAddressId` of the customer will be set to the ID of that address.", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingAddresses", + "description": "The indices of the shipping addresses in the `addresses` list. The\n`shippingAddressIds` of the `Customer` will be set to the IDs of that addresses.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountSortOrder", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "sortOrder", - "description": null, - "type": { + } + }, + "defaultValue": "[]" + }, + { + "name": "billingAddresses", + "description": "The indices of the billing addresses in the `addresses` list. The\n`billingAddressIds` of the customer will be set to the IDs of that addresses.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductDiscountValue", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { + } + }, + "defaultValue": "[]" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "salutation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "stores", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProductDiscountValueInput", + "name": "ResourceIdentifierInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountValidFrom", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "validFrom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountValidFromAndUntil", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "validFrom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "validUntil", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomerSignMeInDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountValidUntil", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "validUntil", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "activeCartSignInMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "AnonymousCartSignInMode", + "ofType": null + }, + "defaultValue": "MergeWithExistingCustomerCart" + }, + { + "name": "updateProductData", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyCustomerUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCustomerAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addBillingAddressId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCustomerBillingAddressId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addShippingAddressId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCustomerShippingAddressId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCustomerAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeEmail", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCustomerEmail", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeBillingAddressId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerBillingAddressId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeShippingAddressId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCustomerShippingAddressId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCompanyName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerCompanyName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLocale", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerLocale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDateOfBirth", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerDateOfBirth", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDefaultBillingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerDefaultBillingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDefaultShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerDefaultShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setFirstName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerFirstName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLastName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerLastName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMiddleName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerMiddleName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setSalutation", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerSalutation", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setTitle", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerTitle", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setVatId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCustomerVatId", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InventoryEntryDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "sku", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "quantityOnStock", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "restockableInDays", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "expectedDelivery", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InventoryEntryUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddInventoryEntryQuantity", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeInventoryEntryQuantity", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveInventoryEntryQuantity", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setRestockableInDays", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntryRestockableInDays", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setExpectedDelivery", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntryExpectedDelivery", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setSupplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntrySupplyChannel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntryCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntryCustomField", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddInventoryEntryQuantity", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeInventoryEntryQuantity", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveInventoryEntryQuantity", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntryRestockableInDays", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "restockableInDays", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntryExpectedDelivery", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "expectedDelivery", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntrySupplyChannel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "productType", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntryCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null - }, - { - "name": "slug", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetInventoryEntryCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "currency", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "country", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "inventoryMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "InventoryMode", + "ofType": null + }, + "defaultValue": "None" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "customerEmail", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "billingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "taxMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "TaxMode", + "ofType": null + }, + "defaultValue": "Platform" + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "deleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "itemShippingAddresses", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "categories", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": "[]" + }, + { + "name": "discountCodes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "categoryOrderHints", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": "[]" + }, + { + "name": "lineItems", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CategoryOrderHintInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LineItemDraft", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "metaTitle", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": "[]" + }, + { + "name": "customLineItems", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomLineItemDraft", + "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": "[]" + }, + { + "name": "customerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTaxRateForShippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "anonymousId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "taxRoundingMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "RoundingMode", + "ofType": null + }, + "defaultValue": "HalfEven" + }, + { + "name": "taxCalculationMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "TaxCalculationMode", + "ofType": null + }, + "defaultValue": "LineItemLevel" + }, + { + "name": "customerGroup", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingRateInput", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ShippingRateInputDraft", + "ofType": null }, - { - "name": "metaDescription", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "origin", + "description": null, + "type": { + "kind": "ENUM", + "name": "CartOrigin", + "ofType": null + }, + "defaultValue": "Customer" + }, + { + "name": "store", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LineItemDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "productId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "targets", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -37422,328 +51946,201 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "name": "ShippingTargetDraft", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "metaKeywords", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "masterVariant", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProductVariantInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "variants", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductVariantInput", - "ofType": null - } - } - }, - "defaultValue": "[]" - }, - { - "name": "taxCategory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingTargetDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "searchKeywords", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SearchKeywordInput", - "ofType": null - } - } - }, - "defaultValue": null + } }, - { - "name": "publish", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Long", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CategoryOrderHintInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "uuid", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "orderHint", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductVariantInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "amount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Float", "ofType": null - }, - "defaultValue": null - }, - { - "name": "prices", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductPriceDataInput", - "ofType": null - } - } - }, - "defaultValue": "[]" + } }, - { - "name": "images", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImageInput", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + }, + { + "name": "country", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + } }, - { - "name": "attributes", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductAttributeInput", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "assets", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AssetDraftInput", - "ofType": null - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductPriceDataInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "subRates", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", + "name": "SubRateDraft", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "country", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Country", - "ofType": null - }, - "defaultValue": null + "defaultValue": "[]" + }, + { + "name": "includedInPrice", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "customerGroup", - "description": null, - "type": { + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "price", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "name": "BaseMoneyInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "channel", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "totalPrice", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "validFrom", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "validUntil", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", + "name": "MoneyInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "tiers", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomLineItemDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -37751,1447 +52148,1108 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProductPriceTierInput", + "name": "LocalizedStringItemInputType", "ofType": null } } - }, - "defaultValue": "[]" + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "centPrecision", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "money", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "MoneyInput", + "name": "BaseMoneyInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "highPrecision", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "HighPrecisionMoneyInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "HighPrecisionMoneyInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "currencyCode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "preciseAmount", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null }, - { - "name": "fractionDigits", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "centAmount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductPriceTierInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "minimumQuantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImageInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "url", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingRateInputDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "Classification", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ClassificationShippingRateInputDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "Score", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ScoreShippingRateInputDraft", + "ofType": null }, - { - "name": "label", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ClassificationShippingRateInputDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "dimensions", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DimensionsInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DimensionsInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "width", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ScoreShippingRateInputDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "score", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "height", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductAttributeInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addCustomLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartCustomLineItem", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SearchKeywordInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addDiscountCode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartDiscountCode", + "ofType": null }, - { - "name": "keywords", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomSuggestTokenizerInput", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomSuggestTokenizerInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "text", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartItemShippingAddress", + "ofType": null }, - { - "name": "suggestTokenizer", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BaseSearchKeywordInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BaseSearchKeywordInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "whitespace", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WhitespaceSuggestTokenizerInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartLineItem", + "ofType": null }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomSuggestTokenizerInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WhitespaceSuggestTokenizerInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dummy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "moveImageToPosition", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "MoveProductImageToPosition", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addPayment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartPayment", + "ofType": null }, - { - "name": "setSearchKeywords", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetSearchKeywords", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addShoppingList", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartShoppingList", + "ofType": null }, - { - "name": "revertStagedChanges", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RevertStagedChanges", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "applyDeltaToCustomLineItemShippingDetailsTargets", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ApplyCartDeltaToCustomLineItemShippingDetailsTargets", + "ofType": null }, - { - "name": "revertStagedVariantChanges", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RevertStagedVariantChanges", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "applyDeltaToLineItemShippingDetailsTargets", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ApplyCartDeltaToLineItemShippingDetailsTargets", + "ofType": null }, - { - "name": "publish", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PublishProduct", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeCustomLineItemMoney", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartCustomLineItemMoney", + "ofType": null }, - { - "name": "unpublish", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UnpublishProduct", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeCustomLineItemQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartCustomLineItemQuantity", + "ofType": null }, - { - "name": "transitionState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TransitionProductState", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeLineItemQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartLineItemQuantity", + "ofType": null }, - { - "name": "addAsset", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddProductAsset", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeTaxCalculationMode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartTaxCalculationMode", + "ofType": null }, - { - "name": "addExternalImage", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddProductExternalImage", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeTaxMode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartTaxMode", + "ofType": null }, - { - "name": "addPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddProductPrice", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeTaxRoundingMode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartTaxRoundingMode", + "ofType": null }, - { - "name": "addToCategory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddProductToCategory", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "recalculate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RecalculateCart", + "ofType": null }, - { - "name": "addVariant", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddProductVariant", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "removeCustomLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCartCustomLineItem", + "ofType": null }, - { - "name": "changeAssetName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductAssetName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "removeDiscountCode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCartDiscountCode", + "ofType": null }, - { - "name": "changeAssetOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductAssetOrder", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "removeItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCartItemShippingAddress", + "ofType": null }, - { - "name": "changeMasterVariant", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductMasterVariant", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "removeLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCartLineItem", + "ofType": null }, - { - "name": "changeImageLabel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductImageLabel", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "removePayment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCartPayment", + "ofType": null }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setAnonymousId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartAnonymousId", + "ofType": null }, - { - "name": "changePrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductPrice", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setBillingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartBillingAddress", + "ofType": null }, - { - "name": "changeSlug", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProductSlug", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCartTotalTax", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartTotalTax", + "ofType": null }, - { - "name": "removeAsset", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveProductAsset", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCountry", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCountry", + "ofType": null }, - { - "name": "removeFromCategory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveProductFromCategory", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomField", + "ofType": null }, - { - "name": "removeImage", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveProductImage", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemCustomField", + "ofType": null }, - { - "name": "removePrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveProductPrice", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemCustomType", + "ofType": null }, - { - "name": "removeVariant", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveProductVariant", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomLineItemShippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemShippingDetails", + "ofType": null }, - { - "name": "setAssetCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomLineItemTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemTaxAmount", + "ofType": null }, - { - "name": "setAssetCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomLineItemTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemTaxRate", + "ofType": null }, - { - "name": "setAssetDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetDescription", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomShippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomShippingMethod", + "ofType": null }, - { - "name": "setAssetKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetKey", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomType", + "ofType": null }, - { - "name": "setAssetSources", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetSources", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomerEmail", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomerEmail", + "ofType": null }, - { - "name": "setAssetTags", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetTags", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomerGroup", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomerGroup", + "ofType": null }, - { - "name": "setCategoryOrderHint", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductCategoryOrderHint", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomerId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomerId", + "ofType": null }, - { - "name": "setDiscountedPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountedPrice", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setDeleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartDeleteDaysAfterLastModification", + "ofType": null }, - { - "name": "setAttribute", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductAttribute", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemCustomField", + "ofType": null }, - { - "name": "setAttributeInAllVariants", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductAttributeInAllVariants", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemCustomType", + "ofType": null }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductDescription", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemDistributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemDistributionChannel", + "ofType": null }, - { - "name": "setImageLabel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductImageLabel", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemPrice", + "ofType": null }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductKey", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemShippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemShippingDetails", + "ofType": null }, - { - "name": "setMetaAttributes", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductMetaAttributes", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemTaxAmount", + "ofType": null }, - { - "name": "setMetaDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductMetaDescription", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemTaxRate", + "ofType": null }, - { - "name": "setMetaKeywords", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductMetaKeywords", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemTotalPrice", + "ofType": null }, - { - "name": "setMetaTitle", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductMetaTitle", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLocale", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLocale", + "ofType": null }, - { - "name": "setProductPriceCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductPriceCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingAddress", + "ofType": null }, - { - "name": "setProductPriceCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductPriceCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setShippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingMethod", + "ofType": null }, - { - "name": "setPrices", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductPrices", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setShippingMethodTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingMethodTaxAmount", + "ofType": null }, - { - "name": "setSku", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductSku", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setShippingMethodTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingMethodTaxRate", + "ofType": null }, - { - "name": "setTaxCategory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductTaxCategory", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setShippingRateInput", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingRateInput", + "ofType": null }, - { - "name": "setProductVariantKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProductVariantKey", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MoveProductImageToPosition", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "updateItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateCartItemShippingAddress", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCartCustomLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "imageUrl", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + }, + { + "name": "money", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "position", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetSearchKeywords", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "searchKeywords", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SearchKeywordInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RevertStagedChanges", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dummy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RevertStagedVariantChanges", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PublishProduct", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "scope", - "description": null, - "type": { - "kind": "ENUM", - "name": "PublishScope", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PublishScope", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "All", - "description": "Publishes the complete staged projection", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Prices", - "description": "Publishes only prices on the staged projection", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UnpublishProduct", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dummy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TransitionProductState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "state", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "force", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProductAsset", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCartDiscountCode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "code", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "validateDuplicates", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCartItemShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "name": "AddressInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCartLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "position", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "ofType": null }, - { - "name": "asset", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AssetDraftInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProductExternalImage", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null }, - { - "name": "image", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ImageInput", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProductPrice", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null }, - { - "name": "price", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductPriceDataInput", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCartPayment", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "payment", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddCartShoppingList", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shoppingList", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProductToCategory", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "category", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "orderHint", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ApplyCartDeltaToCustomLineItemShippingDetailsTargets", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddProductVariant", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "assets", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AssetDraftInput", - "ofType": null - } - } - }, - "defaultValue": "[]" - }, - { - "name": "attributes", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductAttributeInput", - "ofType": null - } - } - }, - "defaultValue": "[]" - }, - { - "name": "images", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "targetsDelta", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -39199,17 +53257,46 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ImageInput", + "name": "ShippingTargetDraft", "ofType": null } } - }, - "defaultValue": "[]" + } }, - { - "name": "prices", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ApplyCartDeltaToLineItemShippingDetailsTargets", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "targetsDelta", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -39217,1117 +53304,1709 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProductPriceDataInput", + "name": "ShippingTargetDraft", "ofType": null } } - }, - "defaultValue": "[]" + } }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartCustomLineItemMoney", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "money", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartCustomLineItemQuantity", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Long", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductAssetName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartLineItemQuantity", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "defaultValue": null + }, + { + "name": "externalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartTaxCalculationMode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxCalculationMode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxCalculationMode", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartTaxMode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxMode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxMode", "ofType": null - }, - "defaultValue": "true" + } }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeCartTaxRoundingMode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxRoundingMode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RoundingMode", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RecalculateCart", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "updateProductData", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "assetKey", - "description": null, - "type": { + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCartCustomLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCartDiscountCode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "discountCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductAssetOrder", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCartItemShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCartLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingDetailsToRemove", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveCartPayment", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "payment", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartAnonymousId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "anonymousId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartBillingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartTotalTax", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalTotalGross", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MoneyInput", + "ofType": null }, - { - "name": "assetOrder", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "externalTaxPortions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TaxPortionDraft", + "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductMasterVariant", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TaxPortionDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductImageLabel", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "rate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Float", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "amount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MoneyInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "imageUrl", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCountry", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "country", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null }, - { - "name": "label", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductPrice", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "priceId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "variantId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "price", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ProductPriceDataInput", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProductSlug", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "slug", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveProductAsset", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemShippingDetails", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemTaxAmount", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "externalTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxAmountDraft", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxAmountDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "totalGross", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "name": "MoneyInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "defaultValue": null + }, + { + "name": "taxRate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", "ofType": null - }, - "defaultValue": "true" + } }, - { - "name": "assetKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomLineItemTaxRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "assetId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomShippingMethod", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingMethodName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveProductFromCategory", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "category", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "shippingRate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ShippingRateDraft", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomerEmail", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomerGroup", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customerGroup", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomerId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartDeleteDaysAfterLastModification", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveProductImage", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "imageUrl", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemDistributionChannel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveProductPrice", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "priceId", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemPrice", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "externalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null }, - { - "name": "variantId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemShippingDetails", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemTaxAmount", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "price", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ProductPriceDataInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxAmountDraft", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemTaxRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemTotalPrice", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveProductVariant", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartLocale", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingMethod", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingMethodTaxAmount", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxAmountDraft", + "ofType": null }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingMethodTaxRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingRateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingRateInput", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ShippingRateInputDraft", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateCartItemShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "name": "AddressInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyCartDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "currency", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "country", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null }, - { - "name": "typeId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "inventoryMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "InventoryMode", + "ofType": null }, - { - "name": "typeKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": "None" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "customerEmail", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "shippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "billingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "shippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "taxMode", + "description": null, + "type": { + "kind": "ENUM", + "name": "TaxMode", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": "Platform" + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" + "defaultValue": null + }, + { + "name": "deleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + }, + { + "name": "itemShippingAddresses", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "assetId", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "discountCodes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -40335,451 +55014,1416 @@ "name": "String", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetSources", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" + } }, - { - "name": "sources", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": "[]" + }, + { + "name": "lineItems", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AssetSourceInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "MyLineItemDraft", + "ofType": null } - }, - "defaultValue": "[]" + } }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyLineItemDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "productId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductAssetTags", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" + "defaultValue": null + }, + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "assetKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "assetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyCartUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addDiscountCode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartDiscountCode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartItemShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddMyCartLineItem", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addPayment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartPayment", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addShoppingList", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddCartShoppingList", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "applyDeltaToLineItemShippingDetailsTargets", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ApplyCartDeltaToLineItemShippingDetailsTargets", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLineItemQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeCartLineItemQuantity", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTaxMode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeMyCartTaxMode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "recalculate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RecalculateCart", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeDiscountCode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCartDiscountCode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCartItemShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCartLineItem", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removePayment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveCartPayment", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setBillingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartBillingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCountry", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCountry", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomerEmail", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartCustomerEmail", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDeleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartDeleteDaysAfterLastModification", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemDistributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemDistributionChannel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemShippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLineItemShippingDetails", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLocale", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartLocale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetMyCartShippingMethod", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetCartShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updateItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateCartItemShippingAddress", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddMyCartLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeMyCartTaxMode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxMode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxMode", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductCategoryOrderHint", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "categoryId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetMyCartShippingMethod", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "orderHint", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrderCartCommand", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Long", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductDiscountedPrice", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "priceId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "discounted", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DiscountedProductPriceValueInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "paymentState", + "description": null, + "type": { + "kind": "ENUM", + "name": "PaymentState", + "ofType": null }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "orderState", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderState", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DiscountedProductPriceValueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shipmentState", + "description": null, + "type": { + "kind": "ENUM", + "name": "ShipmentState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrderUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addDelivery", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddOrderDelivery", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddOrderItemShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addParcelToDelivery", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddOrderParcelToDelivery", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addPayment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddOrderPayment", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addReturnInfo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddOrderReturnInfo", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeOrderState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOrderState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changePaymentState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOrderPaymentState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeShipmentState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOrderShipmentState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "importCustomLineItemState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImportOrderCustomLineItemState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "importLineItemState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImportOrderLineItemState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeDelivery", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveOrderDelivery", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveOrderItemShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeParcelFromDelivery", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveOrderParcelFromDelivery", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removePayment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveOrderPayment", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setBillingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderBillingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomLineItemCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomLineItemCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomLineItemShippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomLineItemShippingDetails", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomerEmail", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomerEmail", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomerId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomerId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDeliveryAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderDeliveryAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDeliveryItems", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderDeliveryItems", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderLineItemCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderLineItemCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemShippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderLineItemShippingDetails", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLocale", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderLocale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setOrderNumber", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderNumber", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setParcelItems", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderParcelItems", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setParcelMeasurements", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderParcelMeasurements", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setParcelTrackingData", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderParcelTrackingData", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setReturnPaymentState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderReturnPaymentState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setReturnShipmentState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderReturnShipmentState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setStore", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderStore", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transitionCustomLineItemState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransitionOrderCustomLineItemState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transitionLineItemState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransitionOrderLineItemState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transitionState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransitionOrderState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updateItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateOrderItemShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updateSyncInfo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateOrderSyncInfo", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddOrderDelivery", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "items", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", + "name": "DeliveryItemDraftType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "discount", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "parcels", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "name": "DeliveryItemDraftType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductAttribute", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { + } + }, + "defaultValue": "[]" + }, + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DeliveryItemDraftType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddOrderItemShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddOrderParcelToDelivery", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deliveryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "measurements", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ParcelMeasurementsDraftType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trackingData", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TrackingDataDraftType", + "ofType": null }, - { - "name": "name", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "items", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "DeliveryItemDraftType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ParcelMeasurementsDraftType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "heightInMillimeter", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductAttributeInAllVariants", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "lengthInMillimeter", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "widthInMillimeter", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "defaultValue": null + }, + { + "name": "weightInGram", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TrackingDataDraftType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "trackingId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "carrier", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "provider", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "providerTransaction", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isReturn", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddOrderPayment", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "payment", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddOrderReturnInfo", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "items", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -40787,124 +56431,210 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "name": "ReturnItemDraftType", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductImageLabel", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "returnDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "returnTrackingId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ReturnItemDraftType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "comment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shipmentState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnShipmentState", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "imageUrl", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeOrderState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "orderState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrderState", + "ofType": null + } }, - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeOrderPaymentState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "paymentState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PaymentState", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeOrderShipmentState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shipmentState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ShipmentState", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImportOrderCustomLineItemState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductMetaAttributes", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "metaDescription", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -40912,74 +56642,85 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "name": "ItemStateDraftType", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "metaKeywords", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ItemStateDraftType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "metaTitle", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + } }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImportOrderLineItemState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductMetaDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "metaDescription", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -40987,219 +56728,345 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "name": "ItemStateDraftType", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveOrderDelivery", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deliveryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductMetaKeywords", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "metaKeywords", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveOrderItemShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductMetaTitle", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "metaTitle", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveOrderParcelFromDelivery", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "parcelId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductPriceCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "priceId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "catalog", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveOrderPayment", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "payment", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderBillingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" + } }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomLineItemCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductPriceCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "priceId", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomLineItemCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomLineItemShippingDetails", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" + } + }, + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraftType", + "ofType": null }, - { - "name": "fields", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraftType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "targets", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -41207,346 +57074,467 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", + "name": "ShippingTargetDraftType", "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "typeKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingTargetDraftType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductPrices", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "prices", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductPriceDataInput", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomerEmail", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderCustomerId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderDeliveryAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deliveryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "staged", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderDeliveryItems", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deliveryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductSku", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "items", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DeliveryItemDraftType", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderLineItemCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductTaxCategory", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "taxCategory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProductVariantKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderLineItemCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "staged", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "true" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomerSignUpDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "firstName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "lastName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "middleName", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderLineItemShippingDetails", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraftType", + "ofType": null }, - { - "name": "dateOfBirth", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderLocale", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null }, - { - "name": "companyName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderNumber", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "orderNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "vatId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderParcelItems", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "parcelId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "addresses", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "items", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -41554,1643 +57542,2194 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AddressInput", + "name": "DeliveryItemDraftType", "ofType": null } } - }, - "defaultValue": "[]" - }, - { - "name": "defaultBillingAddress", - "description": "The index of the address in the `addresses` list. The `defaultBillingAddressId` of the customer will be set to the ID of that address.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "defaultShippingAddress", - "description": "The index of the address in the `addresses` list. The `defaultShippingAddressId` of the customer will be set to the ID of that address.", - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderParcelMeasurements", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "parcelId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "shippingAddresses", - "description": "The indices of the shipping addresses in the `addresses` list. The `shippingAddressIds` of the `Customer` will be set to the IDs of that addresses.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": "[]" - }, - { - "name": "billingAddresses", - "description": "The indices of the billing addresses in the `addresses` list. The `billingAddressIds` of the customer will be set to the IDs of that addresses.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": "[]" + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "measurements", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ParcelMeasurementsDraftType", + "ofType": null }, - { - "name": "locale", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderParcelTrackingData", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "parcelId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "trackingData", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TrackingDataDraftType", + "ofType": null }, - { - "name": "salutation", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderReturnPaymentState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "returnItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "paymentState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnPaymentState", + "ofType": null + } }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderReturnShipmentState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "returnItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "shipmentState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnShipmentState", + "ofType": null + } }, - { - "name": "stores", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "customerNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderStore", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "store", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "anonymousCartId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransitionOrderCustomLineItemState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "externalId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "customerGroup", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "fromState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null - }, - { - "name": "isEmailVerified", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "anonymousId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "toState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CustomerSignInResult", - "description": null, - "fields": [ - { - "name": "customer", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Customer", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cart", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomerSignInDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "actualTransitionDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "anonymousCartId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransitionOrderLineItemState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "anonymousCartSignInMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "AnonymousCartSignInMode", - "ofType": null - }, - "defaultValue": "MergeWithExistingCustomerCart" + } }, - { - "name": "anonymousId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "updateProductData", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "AnonymousCartSignInMode", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "UseAsNewActiveCustomerCart", - "description": "The anonymous cart is used as new active customer cart. No `LineItem`s get merged.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MergeWithExistingCustomerCart", - "description": "`LineItem`s of the anonymous cart will be copied to the customer’s active cart that has been modified most recently.\n\nThe `CartState` of the anonymous cart gets changed to `Merged` while the `CartState` of the customer’s cart remains `Active`.\n\n`CustomLineItems` and `CustomFields` of the anonymous cart will not be copied to the customers cart.\n\nIf a `LineItem` in the anonymous cart matches an existing line item in the customer’s cart (same product ID and variant ID), the maximum quantity of both LineItems is used as the new quantity. In that case `CustomFields` on the `LineItem` of the anonymous cart will not be in the resulting `LineItem`.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomerUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addAddress", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "fromState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "AddCustomerAddress", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addBillingAddressId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "toState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "AddCustomerBillingAddressId", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "actualTransitionDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "addShippingAddressId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransitionOrderState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "AddCustomerShippingAddressId", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addStore", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "force", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateOrderItemShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "AddCustomerStore", + "name": "AddressInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeAddress", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateOrderSyncInfo", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "channel", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ChangeCustomerAddress", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeEmail", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCustomerEmail", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "syncedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "removeAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "removeBillingAddressId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerBillingAddressId", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrderMyCartCommand", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeShippingAddressId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerShippingAddressId", + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeStore", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerStore", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrderEditDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setCompanyName", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "resource", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCustomerCompanyName", + "name": "ReferenceInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "stagedActions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StagedOrderUpdateAction", + "ofType": null + } + } + } }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "comment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setCustomerGroup", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerGroup", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "dryRun", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerKey", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StagedOrderUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addCustomLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderCustomLineItem", + "ofType": null }, - { - "name": "setLocale", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerLocale", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addDelivery", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderDelivery", + "ofType": null }, - { - "name": "setCustomerNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerNumber", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addDiscountCode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderDiscountCode", + "ofType": null }, - { - "name": "setDateOfBirth", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerDateOfBirth", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderItemShippingAddress", + "ofType": null }, - { - "name": "setDefaultBillingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerDefaultBillingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderLineItem", + "ofType": null }, - { - "name": "setDefaultShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerDefaultShippingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addParcelToDelivery", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderParcelToDelivery", + "ofType": null }, - { - "name": "setExternalId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerExternalId", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addPayment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderPayment", + "ofType": null }, - { - "name": "setFirstName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerFirstName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addReturnInfo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderReturnInfo", + "ofType": null }, - { - "name": "setLastName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerLastName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addShoppingList", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderShoppingList", + "ofType": null }, - { - "name": "setMiddleName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerMiddleName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeCustomLineItemMoney", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderCustomLineItemMoney", + "ofType": null }, - { - "name": "setSalutation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerSalutation", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeCustomLineItemQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderCustomLineItemQuantity", + "ofType": null }, - { - "name": "setStores", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerStores", + "defaultValue": null + }, + { + "name": "changeLineItemQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderLineItemQuantity", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeOrderState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderOrderState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changePaymentState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderPaymentState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeShipmentState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderShipmentState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTaxCalculationMode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderTaxCalculationMode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTaxMode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderTaxMode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTaxRoundingMode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderTaxRoundingMode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "importCustomLineItemState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImportStagedOrderCustomLineItemState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "importLineItemState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImportStagedOrderLineItemState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "recalculate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RecalculateStagedOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeCustomLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderCustomLineItem", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeDelivery", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderDelivery", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeDiscountCode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderDiscountCode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderItemShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderLineItem", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeParcelFromDelivery", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderParcelFromDelivery", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removePayment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderPayment", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setBillingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderBillingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCountry", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCountry", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomLineItemShippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemShippingDetails", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomLineItemTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemTaxAmount", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomLineItemTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemTaxRate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomShippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomShippingMethod", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomerEmail", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomerEmail", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomerGroup", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomerGroup", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomerId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomerId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDeliveryAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderDeliveryAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDeliveryItems", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderDeliveryItems", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemDistributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemDistributionChannel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemPrice", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemShippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemShippingDetails", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemTaxAmount", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemTaxRate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemTotalPrice", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLocale", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLocale", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setOrderNumber", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderOrderNumber", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setOrderTotalTax", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderOrderTotalTax", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setParcelItems", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderParcelItems", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setParcelMeasurements", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderParcelMeasurements", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setParcelTrackingData", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderParcelTrackingData", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setReturnPaymentState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderReturnPaymentState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setReturnShipmentState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderReturnShipmentState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingAddressAndCustomShippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingAddressAndCustomShippingMethod", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingAddressAndShippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingAddressAndShippingMethod", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingMethod", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingMethodTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingMethodTaxAmount", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingMethodTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingMethodTaxRate", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingRateInput", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingRateInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setStore", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderStore", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transitionCustomLineItemState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransitionStagedOrderCustomLineItemState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transitionLineItemState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransitionStagedOrderLineItemState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transitionState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransitionStagedOrderState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updateItemShippingAddress", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateStagedOrderItemShippingAddress", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updateSyncInfo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "UpdateStagedOrderSyncInfo", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderCustomLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraftType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setTitle", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "money", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCustomerTitle", + "name": "BaseMoneyInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } + } }, - { - "name": "setVatId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerVatId", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCustomerAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderDelivery", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "items", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AddressInput", + "name": "DeliveryItemDraftType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCustomerBillingAddressId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressId", - "description": null, - "type": { + } + }, + "defaultValue": "[]" + }, + { + "name": "parcels", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "DeliveryItemDraftType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCustomerShippingAddressId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCustomerStore", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "store", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCustomerAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "address", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCustomerEmail", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerBillingAddressId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerShippingAddressId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerStore", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "store", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerCompanyName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "companyName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": "[]" + }, + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderDiscountCode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "code", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "validateDuplicates", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "type", - "description": null, - "type": { + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderItemShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "AddressInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraftType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "catalog", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderParcelToDelivery", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deliveryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerGroup", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customerGroup", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerLocale", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerNumber", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customerNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerDateOfBirth", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dateOfBirth", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerDefaultBillingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerDefaultShippingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerExternalId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerFirstName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "firstName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerLastName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lastName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerMiddleName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "middleName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerSalutation", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "salutation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerStores", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "stores", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerTitle", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCustomerVatId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "vatId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CustomerToken", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "customerId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "measurements", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ParcelMeasurementsDraftType", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "defaultValue": null + }, + { + "name": "trackingData", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TrackingDataDraftType", + "ofType": null }, - { - "name": "expiresAt", - "description": null, - "args": [], - "type": { + "defaultValue": null + }, + { + "name": "items", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "DeliveryItemDraftType", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomerSignMeUpDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderPayment", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "payment", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + } }, - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderReturnInfo", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "items", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ReturnItemDraftType", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "firstName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "returnDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "returnTrackingId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStagedOrderShoppingList", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shoppingList", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "lastName", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderCustomLineItemMoney", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "middleName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + }, + { + "name": "money", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "title", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderCustomLineItemQuantity", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "dateOfBirth", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Date", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "companyName", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderLineItemQuantity", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "vatId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addresses", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + }, + { + "name": "externalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null }, - { - "name": "defaultBillingAddress", - "description": "The index of the address in the `addresses` list. The `defaultBillingAddressId` of the customer will be set to the ID of that address.", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "ofType": null }, - { - "name": "defaultShippingAddress", - "description": "The index of the address in the `addresses` list. The `defaultShippingAddressId` of the customer will be set to the ID of that address.", - "type": { - "kind": "SCALAR", - "name": "Int", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderOrderState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "orderState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrderState", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "shippingAddresses", - "description": "The indices of the shipping addresses in the `addresses` list. The `shippingAddressIds` of the `Customer` will be set to the IDs of that addresses.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderPaymentState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "paymentState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PaymentState", + "ofType": null + } }, - { - "name": "billingAddresses", - "description": "The indices of the billing addresses in the `addresses` list. The `billingAddressIds` of the customer will be set to the IDs of that addresses.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderShipmentState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shipmentState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ShipmentState", + "ofType": null + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderTaxCalculationMode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxCalculationMode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxCalculationMode", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Locale", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderTaxMode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxMode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxMode", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "salutation", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeStagedOrderTaxRoundingMode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "taxRoundingMode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RoundingMode", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "key", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImportStagedOrderCustomLineItemState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "stores", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -43198,642 +59737,849 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "ItemStateDraftType", "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomerSignMeInDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "password", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImportStagedOrderLineItemState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ItemStateDraftType", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "activeCartSignInMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "AnonymousCartSignInMode", - "ofType": null - }, - "defaultValue": "MergeWithExistingCustomerCart" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RecalculateStagedOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "updateProductData", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "updateProductData", - "description": null, - "type": { + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderCustomLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MyCustomerUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCustomerAddress", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addBillingAddressId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCustomerBillingAddressId", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addShippingAddressId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCustomerShippingAddressId", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderDelivery", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deliveryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeAddress", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderDiscountCode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "discountCode", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ChangeCustomerAddress", + "name": "ReferenceInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeEmail", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCustomerEmail", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderItemShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addressKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerAddress", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeBillingAddressId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerBillingAddressId", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null }, - { - "name": "removeShippingAddressId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCustomerShippingAddressId", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null }, - { - "name": "setCompanyName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerCompanyName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "ofType": null }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "shippingDetailsToRemove", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraftType", + "ofType": null }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerCustomType", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderParcelFromDelivery", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "parcelId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setLocale", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStagedOrderPayment", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "payment", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCustomerLocale", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setDateOfBirth", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerDateOfBirth", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderBillingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "setDefaultBillingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerDefaultBillingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCountry", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "country", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null }, - { - "name": "setDefaultShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerDefaultShippingAddress", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setFirstName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerFirstName", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setLastName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerLastName", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setMiddleName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerMiddleName", + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setSalutation", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerSalutation", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setTitle", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerTitle", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setVatId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCustomerVatId", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryEntryDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "quantityOnStock", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "restockableInDays", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "expectedDelivery", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "supplyChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemShippingDetails", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InventoryEntryUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddInventoryEntryQuantity", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraftType", + "ofType": null }, - { - "name": "changeQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeInventoryEntryQuantity", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemTaxAmount", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveInventoryEntryQuantity", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxAmountDraft", + "ofType": null }, - { - "name": "setRestockableInDays", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntryRestockableInDays", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomLineItemTaxRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setExpectedDelivery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntryExpectedDelivery", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "setSupplyChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntrySupplyChannel", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomShippingMethod", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingMethodName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "shippingRate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ShippingRateDraft", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntryCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntryCustomField", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddInventoryEntryQuantity", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "quantity", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeInventoryEntryQuantity", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveInventoryEntryQuantity", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntryRestockableInDays", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "restockableInDays", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntryExpectedDelivery", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "expectedDelivery", - "description": null, - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntrySupplyChannel", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "supplyChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntryCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "typeId", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomerEmail", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomerGroup", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customerGroup", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderCustomerId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customerId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderDeliveryAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deliveryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "typeKey", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderDeliveryItems", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deliveryId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "fields", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "items", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -43841,231 +60587,459 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetInventoryEntryCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "DeliveryItemDraftType", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "currency", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Currency", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "country", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Country", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "inventoryMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "InventoryMode", - "ofType": null - }, - "defaultValue": "None" + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "customerEmail", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemDistributionChannel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "shippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "billingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemPrice", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "shippingMethod", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + }, + { + "name": "externalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "BaseMoneyInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemShippingDetails", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "taxMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaxMode", + "defaultValue": null + }, + { + "name": "shippingDetails", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemShippingDetailsDraftType", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemTaxAmount", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": "Platform" + } + }, + "defaultValue": null + }, + { + "name": "externalTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxAmountDraft", + "ofType": null }, - { - "name": "locale", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemTaxRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Locale", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "deleteDaysAfterLastModification", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLineItemTotalPrice", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "itemShippingAddresses", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + }, + { + "name": "externalTotalPrice", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalLineItemTotalPriceDraft", + "ofType": null }, - { - "name": "discountCodes", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderLocale", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null }, - { - "name": "lineItems", - "description": null, - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderOrderNumber", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "orderNumber", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderOrderTotalTax", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalTotalGross", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MoneyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTaxPortions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LineItemDraft", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "TaxPortionDraft", + "ofType": null } - }, - "defaultValue": "[]" + } }, - { - "name": "customLineItems", - "description": null, - "type": { + "defaultValue": "[]" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderParcelItems", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "parcelId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "items", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -44073,363 +61047,958 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CustomLineItemDraft", + "name": "DeliveryItemDraftType", "ofType": null } } - }, - "defaultValue": "[]" + } }, - { - "name": "customerId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderParcelMeasurements", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "parcelId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "externalTaxRateForShippingMethod", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "measurements", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ParcelMeasurementsDraftType", + "ofType": null }, - { - "name": "anonymousId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderParcelTrackingData", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "parcelId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "taxRoundingMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "RoundingMode", - "ofType": null - }, - "defaultValue": "HalfEven" + "defaultValue": null + }, + { + "name": "trackingData", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TrackingDataDraftType", + "ofType": null }, - { - "name": "taxCalculationMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaxCalculationMode", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderReturnPaymentState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "returnItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": "LineItemLevel" - }, - { - "name": "customerGroup", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + } + }, + "defaultValue": null + }, + { + "name": "paymentState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnPaymentState", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "shippingRateInput", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShippingRateInputDraft", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderReturnShipmentState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "returnItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "origin", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "shipmentState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "ENUM", - "name": "CartOrigin", + "name": "ReturnShipmentState", "ofType": null - }, - "defaultValue": "Customer" + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null }, - { - "name": "store", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingAddressAndCustomShippingMethod", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LineItemDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "productId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "name": "AddressInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "shippingMethodName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "shippingRate", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ShippingRateDraft", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "taxCategory", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null }, - { - "name": "supplyChannel", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingAddressAndShippingMethod", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "AddressInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "distributionChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "shippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingMethod", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingMethodTaxAmount", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalTaxAmount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxAmountDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingMethodTaxRate", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalTaxRate", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalTaxRateDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderShippingRateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingRateInput", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ShippingRateInputDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStagedOrderStore", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "store", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransitionStagedOrderCustomLineItemState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "shippingDetails", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "fromState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "externalTaxRate", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "toState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "externalPrice", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "actualTransitionDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransitionStagedOrderLineItemState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "fromState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "externalTotalPrice", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "toState", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ExternalLineItemTotalPriceDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "targets", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingTargetDraft", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingTargetDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "name": "ResourceIdentifierInput", + "ofType": null + } }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "actualTransitionDate", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransitionStagedOrderState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "force", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateStagedOrderItemShippingAddress", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "address", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "AddressInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UpdateStagedOrderSyncInfo", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "channel", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "syncedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "externalId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrderEditUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addStagedAction", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddOrderEditStagedAction", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setComment", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditComment", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setStagedActions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditStagedActions", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddOrderEditStagedAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "stagedAction", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StagedOrderUpdateAction", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditComment", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "comment", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "amount", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Float", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "country", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetOrderEditStagedActions", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "stagedActions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Country", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "StagedOrderUpdateAction", + "ofType": null + } } - }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "subRates", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShoppingListDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -44437,6618 +62006,10738 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SubRateDraft", + "name": "LocalizedStringItemInputType", "ofType": null } } - }, - "defaultValue": "[]" + } }, - { - "name": "includedInPrice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExternalLineItemTotalPriceDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "price", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "totalPrice", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "lineItems", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "MoneyInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomLineItemDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } + "name": "ShoppingListLineItemDraft", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "money", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "textLineItems", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", + "name": "TextLineItemDraft", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": "[]" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "deleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "customer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "slug", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "slug", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "taxCategory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "anonymousId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "externalTaxRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShoppingListLineItemDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "productId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "shippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingRateInputDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "Classification", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ClassificationShippingRateInputDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "Score", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ScoreShippingRateInputDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ClassificationShippingRateInputDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": "1" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TextLineItemDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ScoreShippingRateInputDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "score", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addCustomLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartCustomLineItem", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addDiscountCode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartDiscountCode", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "addItemShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartItemShippingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": "1" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "addLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartLineItem", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "addPayment", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartPayment", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShoppingListUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddShoppingListLineItem", + "ofType": null }, - { - "name": "addShoppingList", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartShoppingList", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "addTextLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddShoppingListTextLineItem", + "ofType": null }, - { - "name": "applyDeltaToCustomLineItemShippingDetailsTargets", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ApplyCartDeltaToCustomLineItemShippingDetailsTargets", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeLineItemQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListLineItemQuantity", + "ofType": null }, - { - "name": "applyDeltaToLineItemShippingDetailsTargets", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ApplyCartDeltaToLineItemShippingDetailsTargets", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeLineItemsOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListLineItemsOrder", + "ofType": null }, - { - "name": "changeCustomLineItemMoney", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartCustomLineItemMoney", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListName", + "ofType": null }, - { - "name": "changeCustomLineItemQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartCustomLineItemQuantity", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeTextLineItemName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListTextLineItemName", + "ofType": null }, - { - "name": "changeLineItemQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartLineItemQuantity", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeTextLineItemQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListTextLineItemQuantity", + "ofType": null }, - { - "name": "changeTaxCalculationMode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartTaxCalculationMode", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeTextLineItemsOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListTextLineItemsOrder", + "ofType": null }, - { - "name": "changeTaxMode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartTaxMode", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "removeLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveShoppingListLineItem", + "ofType": null }, - { - "name": "changeTaxRoundingMode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartTaxRoundingMode", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "removeTextLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveShoppingListTextLineItem", + "ofType": null }, - { - "name": "recalculate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RecalculateCart", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setAnonymousId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListAnonymousId", + "ofType": null }, - { - "name": "removeCustomLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCartCustomLineItem", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListCustomField", + "ofType": null }, - { - "name": "removeDiscountCode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCartDiscountCode", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListCustomType", + "ofType": null }, - { - "name": "removeItemShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCartItemShippingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListCustomer", + "ofType": null }, - { - "name": "removeLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCartLineItem", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setDeleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListDeleteDaysAfterLastModification", + "ofType": null }, - { - "name": "removePayment", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCartPayment", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListDescription", + "ofType": null }, - { - "name": "setAnonymousId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartAnonymousId", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListKey", + "ofType": null }, - { - "name": "setBillingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartBillingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListLineItemCustomField", + "ofType": null }, - { - "name": "setCartTotalTax", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartTotalTax", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListLineItemCustomType", + "ofType": null }, - { - "name": "setCountry", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCountry", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setSlug", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListSlug", + "ofType": null }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setTextLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListTextLineItemCustomField", + "ofType": null }, - { - "name": "setCustomLineItemCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setTextLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListTextLineItemCustomType", + "ofType": null }, - { - "name": "setCustomLineItemCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setTextLineItemDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListTextLineItemDescription", + "ofType": null }, - { - "name": "setCustomLineItemShippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemShippingDetails", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddShoppingListLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "setCustomLineItemTaxAmount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemTaxAmount", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "setCustomLineItemTaxRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemTaxRate", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setCustomShippingMethod", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomShippingMethod", - "ofType": null - }, - "defaultValue": null + "defaultValue": "1" + }, + { + "name": "variantId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "sku", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setCustomerEmail", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomerEmail", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "productId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setCustomerGroup", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomerGroup", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddShoppingListTextLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "setCustomerId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomerId", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "setDeleteDaysAfterLastModification", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartDeleteDaysAfterLastModification", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setLineItemCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": "1" + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } }, - { - "name": "setLineItemCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } + } }, - { - "name": "setLineItemPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemPrice", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListLineItemQuantity", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setLineItemShippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemShippingDetails", + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setLineItemTaxAmount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemTaxAmount", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListLineItemsOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemOrder", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, - { - "name": "setLineItemTaxRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemTaxRate", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } + } }, - { - "name": "setLineItemTotalPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemTotalPrice", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListTextLineItemName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "textLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } + } }, - { - "name": "setLocale", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLocale", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListTextLineItemQuantity", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "textLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingAddress", + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setShippingMethod", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingMethod", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListTextLineItemsOrder", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "textLineItemOrder", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } }, - { - "name": "setShippingMethodTaxAmount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingMethodTaxAmount", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveShoppingListLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setShippingMethodTaxRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingMethodTaxRate", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setShippingRateInput", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingRateInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveShoppingListTextLineItem", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "textLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "updateItemShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateCartItemShippingAddress", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCartCustomLineItem", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "quantity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListAnonymousId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "anonymousId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "quantity", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalTaxRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "taxCategory", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "slug", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "money", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCartDiscountCode", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "code", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "validateDuplicates", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCartItemShippingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListCustomer", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListDeleteDaysAfterLastModification", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AddressInput", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCartLineItem", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalTotalPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalLineItemTotalPriceDraft", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "externalTaxRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "distributionChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "supplyChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "quantity", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListLineItemCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "productId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListLineItemCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "lineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCartPayment", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "payment", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddCartShoppingList", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shoppingList", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListSlug", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "slug", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "supplyChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListTextLineItemCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "textLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "distributionChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ApplyCartDeltaToCustomLineItemShippingDetailsTargets", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListTextLineItemCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "textLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "targetsDelta", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingTargetDraft", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ApplyCartDeltaToLineItemShippingDetailsTargets", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListTextLineItemDescription", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "textLineItemId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "targetsDelta", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyShoppingListDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingTargetDraft", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartCustomLineItemMoney", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "money", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartCustomLineItemQuantity", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartLineItemQuantity", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "lineItems", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ShoppingListLineItemDraft", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { + "defaultValue": "[]" + }, + { + "name": "textLineItems", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "INPUT_OBJECT", + "name": "TextLineItemDraft", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "externalPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": "[]" + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "externalTotalPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalLineItemTotalPriceDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartTaxCalculationMode", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "taxCalculationMode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaxCalculationMode", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartTaxMode", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "taxMode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaxMode", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeCartTaxRoundingMode", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "taxRoundingMode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RoundingMode", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RecalculateCart", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "updateProductData", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCartCustomLineItem", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCartDiscountCode", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "discountCode", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "deleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyShoppingListUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddShoppingListLineItem", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addTextLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddShoppingListTextLineItem", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLineItemQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListLineItemQuantity", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLineItemsOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListLineItemsOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTextLineItemName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListTextLineItemName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTextLineItemQuantity", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListTextLineItemQuantity", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTextLineItemsOrder", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeShoppingListTextLineItemsOrder", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveShoppingListLineItem", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeTextLineItem", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveShoppingListTextLineItem", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDeleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListDeleteDaysAfterLastModification", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListDescription", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListLineItemCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListLineItemCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setTextLineItemCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListTextLineItemCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setTextLineItemCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListTextLineItemCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setTextLineItemDescription", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetShoppingListTextLineItemDescription", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "amountPlanned", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MoneyInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "paymentMethodInfo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentMethodInfoInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "customer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "anonymousId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "interfaceId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "paymentStatus", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentStatusInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "name": "TransactionDraft", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCartItemShippingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressKey", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "interfaceInteractions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCartLineItem", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentMethodInfoInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "paymentInterface", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "method", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentStatusInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "interfaceCode", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "externalPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", + "defaultValue": null + }, + { + "name": "interfaceText", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransactionDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "timestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransactionType", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "externalTotalPrice", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "amount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ExternalLineItemTotalPriceDraft", + "name": "MoneyInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "shippingDetailsToRemove", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveCartPayment", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "payment", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "interactionId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "ENUM", + "name": "TransactionState", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PaymentUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addInterfaceInteraction", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddPaymentInterfaceInteraction", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addTransaction", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddPaymentTransaction", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeAmountPlanned", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangePaymentAmountPlanned", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTransactionInteractionId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangePaymentTransactionInteractionId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTransactionState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangePaymentTransactionState", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeTransactionTimestamp", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangePaymentTransactionTimestamp", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAmountPaid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentAmountPaid", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAmountRefunded", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentAmountRefunded", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAnonymousId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentAnonymousId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setAuthorization", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentAuthorization", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentCustomType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentCustomer", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setExternalId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentExternalId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setInterfaceId", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentInterfaceId", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentKey", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMethodInfoInterface", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentMethodInfoInterface", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMethodInfoMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentMethodInfoMethod", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMethodInfoName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentMethodInfoName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setStatusInterfaceCode", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentStatusInterfaceCode", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setStatusInterfaceText", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentStatusInterfaceText", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transitionState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransitionPaymentState", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPaymentInterfaceInteraction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartAnonymousId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "anonymousId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartBillingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartTotalTax", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalTotalGross", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddPaymentTransaction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "transaction", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TransactionDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangePaymentAmountPlanned", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "amount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", "name": "MoneyInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "externalTaxPortions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TaxPortionDraft", - "ofType": null - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TaxPortionDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangePaymentTransactionInteractionId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "transactionId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "rate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "interactionId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "amount", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MoneyInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCountry", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "country", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangePaymentTransactionState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "transactionId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Country", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransactionState", + "ofType": null + } }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangePaymentTransactionTimestamp", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "transactionId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "timestamp", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentAmountPaid", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "amount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MoneyInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentAmountRefunded", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "amount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MoneyInput", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentAnonymousId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "anonymousId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentAuthorization", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "amount", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MoneyInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "until", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentCustomer", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentExternalId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentInterfaceId", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "interfaceId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentMethodInfoInterface", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "interface", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemShippingDetails", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "shippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemTaxAmount", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentMethodInfoMethod", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "method", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "externalTaxAmount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxAmountDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxAmountDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "totalGross", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentMethodInfoName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "MoneyInput", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "taxRate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomLineItemTaxRate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentStatusInterfaceCode", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "interfaceCode", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetPaymentStatusInterfaceText", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "interfaceText", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "externalTaxRate", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransitionPaymentState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomShippingMethod", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shippingMethodName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "shippingRate", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingRateDraft", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "force", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "taxCategory", - "description": null, - "type": { + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyPaymentDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "amountPlanned", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "name": "MoneyInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "paymentMethodInfo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PaymentMethodInfoInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "MyTransactionDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyTransactionDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "timestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransactionType", + "ofType": null + } }, - { - "name": "externalTaxRate", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "amount", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", + "name": "MoneyInput", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "fields", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "interactionId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyPaymentUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addTransaction", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddMyPaymentTransaction", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeAmountPlanned", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangePaymentAmountPlanned", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentCustomField", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMethodInfoInterface", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentMethodInfoInterface", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMethodInfoMethod", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentMethodInfoMethod", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setMethodInfoName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetPaymentMethodInfoName", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddMyPaymentTransaction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "transaction", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MyTransactionDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectSettingsUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changeCartsConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsCartsConfiguration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeCountries", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsCountries", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeCountryTaxRateFallbackEnabled", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsCountryTaxRateFallbackEnabled", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeCurrencies", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsCurrencies", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLanguages", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsLanguages", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeMessagesConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsMessagesConfiguration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeMessagesEnabled", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsMessagesEnabled", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeShoppingListsConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsShoppingListsConfiguration", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setExternalOAuth", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProjectSettingsExternalOAuth", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setShippingRateInputType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetProjectSettingsShippingRateInputType", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsCartsConfiguration", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cartsConfiguration", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartsConfigurationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartsConfigurationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsCountries", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "countries", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", + "kind": "SCALAR", + "name": "Country", "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "typeKey", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomerEmail", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomerGroup", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customerGroup", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomerId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customerId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartDeleteDaysAfterLastModification", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "deleteDaysAfterLastModification", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsCountryTaxRateFallbackEnabled", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "countryTaxRateFallbackEnabled", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsCurrencies", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "currencies", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "fields", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsLanguages", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "languages", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsMessagesConfiguration", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "messagesConfiguration", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MessagesConfigurationDraft", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MessagesConfigurationDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "enabled", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeKey", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "deleteDaysAfterCreation", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsMessagesEnabled", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "messagesEnabled", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemPrice", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "externalPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "BaseMoneyInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemShippingDetails", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeProjectSettingsShoppingListsConfiguration", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shoppingListsConfiguration", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ShoppingListsConfigurationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShoppingListsConfigurationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "deleteDaysAfterLastModification", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProjectSettingsExternalOAuth", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "externalOAuth", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ExternalOAuthDraft", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ExternalOAuthDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "url", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "authorizationHeader", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetProjectSettingsShippingRateInputType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "shippingRateInputType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ShippingRateInputTypeInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ShippingRateInputTypeInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "CartValue", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CartValueInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CartClassification", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CartClassificationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "CartScore", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CartScoreInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartValueInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartClassificationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "values", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedEnumValueInput", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartScoreInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateStore", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "shippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemTaxAmount", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "languages", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "externalTaxAmount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxAmountDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemTaxRate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "distributionChannels", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "externalTaxRate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemTotalPrice", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "supplyChannels", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "externalTotalPrice", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalLineItemTotalPriceDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartLocale", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "StoreUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "addDistributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStoreDistributionChannel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "addSupplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AddStoreSupplyChannel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeDistributionChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStoreDistributionChannel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "removeSupplyChannel", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RemoveStoreSupplyChannel", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setDistributionChannels", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStoreDistributionChannels", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setLanguages", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStoreLanguages", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStoreName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setSupplyChannels", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetStoreSupplyChannels", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStoreDistributionChannel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "AddressInput", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingMethod", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shippingMethod", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AddStoreSupplyChannel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "externalTaxRate", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStoreDistributionChannel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "distributionChannel", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingMethodTaxAmount", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalTaxAmount", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalTaxAmountDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingMethodTaxRate", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalTaxRate", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RemoveStoreSupplyChannel", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "supplyChannel", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "ExternalTaxRateDraft", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingRateInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shippingRateInput", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShippingRateInputDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateCartItemShippingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStoreDistributionChannels", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "distributionChannels", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "AddressInput", + "name": "ResourceIdentifierInput", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MyCartDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "currency", - "description": null, - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStoreLanguages", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "languages", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Currency", + "name": "Locale", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "country", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Country", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStoreName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedStringItemInputType", + "ofType": null + } + } }, - { - "name": "inventoryMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "InventoryMode", - "ofType": null - }, - "defaultValue": "None" + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetStoreSupplyChannels", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "supplyChannels", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null + } + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ReviewDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "customerEmail", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "uniquenessValue", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "shippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null }, - { - "name": "billingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "authorName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "shippingMethod", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "taxMode", - "description": null, - "type": { - "kind": "ENUM", - "name": "TaxMode", - "ofType": null - }, - "defaultValue": "Platform" + "defaultValue": null + }, + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "target", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TargetReferenceInput", + "ofType": null }, - { - "name": "deleteDaysAfterLastModification", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "state", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "itemShippingAddresses", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + }, + { + "name": "rating", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "discountCodes", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": "[]" + "defaultValue": null + }, + { + "name": "customer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "lineItems", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MyLineItemDraft", - "ofType": null - } - } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MyLineItemDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "productId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "custom", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldsDraft", + "ofType": null }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TargetReferenceInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "typeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "variantId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "supplyChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ReviewUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "setAuthorName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewAuthorName", + "ofType": null }, - { - "name": "distributionChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomField", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewCustomField", + "ofType": null }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomType", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewCustomType", + "ofType": null }, - { - "name": "shippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MyCartUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addDiscountCode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartDiscountCode", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setCustomer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewCustomer", + "ofType": null }, - { - "name": "addItemShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartItemShippingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewKey", + "ofType": null }, - { - "name": "addLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddMyCartLineItem", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setLocale", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewLocale", + "ofType": null }, - { - "name": "addPayment", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartPayment", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setRating", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewRating", + "ofType": null }, - { - "name": "addShoppingList", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddCartShoppingList", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setTarget", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewTarget", + "ofType": null }, - { - "name": "applyDeltaToLineItemShippingDetailsTargets", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ApplyCartDeltaToLineItemShippingDetailsTargets", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setText", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewText", + "ofType": null }, - { - "name": "changeLineItemQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeCartLineItemQuantity", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setTitle", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetReviewTitle", + "ofType": null }, - { - "name": "changeTaxMode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeMyCartTaxMode", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "transitionState", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TransitionReviewState", + "ofType": null }, - { - "name": "recalculate", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RecalculateCart", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewAuthorName", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "authorName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "removeDiscountCode", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCartDiscountCode", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewCustomField", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "removeItemShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCartItemShippingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "removeLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCartLineItem", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewCustomType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "fields", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomFieldInput", + "ofType": null + } + } }, - { - "name": "removePayment", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveCartPayment", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "setBillingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartBillingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setCountry", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCountry", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "typeId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewCustomer", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "customer", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ResourceIdentifierInput", + "ofType": null }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setCustomerEmail", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartCustomerEmail", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewLocale", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null }, - { - "name": "setDeleteDaysAfterLastModification", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartDeleteDaysAfterLastModification", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewRating", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "rating", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setLineItemCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLineItemCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewTarget", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "target", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TargetReferenceInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewText", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "text", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setLineItemCustomType", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetReviewTitle", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TransitionReviewState", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "state", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCartLineItemCustomType", + "name": "ResourceIdentifierInput", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "force", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "setLineItemShippingDetails", - "description": null, - "type": { + "defaultValue": "false" + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SubscriptionDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "destination", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "SetCartLineItemShippingDetails", + "name": "DestinationInput", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setLocale", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartLocale", + "defaultValue": null + }, + { + "name": "messages", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MessageSubscriptionInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "changes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeSubscriptionInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "format", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SubscriptionFormatInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DestinationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "SQS", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SQSDestinationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "SNS", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SNSDestinationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "AzureServiceBus", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AzureServiceBusDestinationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "EventGrid", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "EventGridDestinationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "GoogleCloudPubSub", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "GoogleCloudPubSubDestinationInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SQSDestinationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "queueUrl", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setShippingMethod", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetMyCartShippingMethod", + "defaultValue": null + }, + { + "name": "accessKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetCartShippingAddress", + "defaultValue": null + }, + { + "name": "accessSecret", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "updateItemShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateCartItemShippingAddress", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddMyCartLineItem", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraft", + "defaultValue": null + }, + { + "name": "region", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SNSDestinationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "topicArn", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "catalog", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", + "defaultValue": null + }, + { + "name": "accessKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "distributionChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + }, + { + "name": "accessSecret", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "supplyChannel", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AzureServiceBusDestinationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "connectionString", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "variantId", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "EventGridDestinationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "uri", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "accessKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "GoogleCloudPubSubDestinationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "projectId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "productId", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "topic", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeMyCartTaxMode", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "taxMode", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "TaxMode", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetMyCartShippingMethod", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shippingMethod", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MessageSubscriptionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "resourceTypeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OrderCartCommand", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "version", - "description": null, - "type": { + "defaultValue": null + }, + { + "name": "types", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "paymentState", - "description": null, - "type": { - "kind": "ENUM", - "name": "PaymentState", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeSubscriptionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "resourceTypeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "orderState", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderState", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SubscriptionFormatInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "Platform", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PlatformFormatInput", + "ofType": null }, - { - "name": "state", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "CloudEvents", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CloudEventsSubscriptionsFormatInput", + "ofType": null }, - { - "name": "shipmentState", - "description": null, - "type": { - "kind": "ENUM", - "name": "ShipmentState", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PlatformFormatInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "dummy", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "orderNumber", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CloudEventsSubscriptionsFormatInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "cloudEventsVersion", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OrderUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addDelivery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddOrderDelivery", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addItemShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddOrderItemShippingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SubscriptionUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changeDestination", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeSubscriptionDestination", + "ofType": null }, - { - "name": "addParcelToDelivery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddOrderParcelToDelivery", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setChanges", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetSubscriptionChanges", + "ofType": null }, - { - "name": "addPayment", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddOrderPayment", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetSubscriptionKey", + "ofType": null }, - { - "name": "addReturnInfo", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddOrderReturnInfo", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setMessages", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetSubscriptionMessages", + "ofType": null }, - { - "name": "changeOrderState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOrderState", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changePaymentState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOrderPaymentState", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeSubscriptionDestination", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "destination", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DestinationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetSubscriptionChanges", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changes", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ChangeSubscriptionInput", + "ofType": null + } + } + } }, - { - "name": "changeShipmentState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOrderShipmentState", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetSubscriptionKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "importCustomLineItemState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportOrderCustomLineItemState", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetSubscriptionMessages", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "messages", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MessageSubscriptionInput", + "ofType": null + } + } + } }, - { - "name": "importLineItemState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportOrderLineItemState", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ExtensionDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "removeDelivery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveOrderDelivery", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "destination", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExtensionDestinationInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "triggers", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TriggerInput", + "ofType": null + } + } + } }, - { - "name": "removeItemShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveOrderItemShippingAddress", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "timeoutInMs", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "removeParcelFromDelivery", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveOrderParcelFromDelivery", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ExtensionDestinationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "HTTP", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "HttpDestinationInput", + "ofType": null }, - { - "name": "removePayment", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveOrderPayment", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "AWSLambda", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AWSLambdaDestinationInput", + "ofType": null }, - { - "name": "setBillingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderBillingAddress", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "HttpDestinationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "url", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "authentication", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "HttpDestinationAuthenticationInput", + "ofType": null }, - { - "name": "setCustomLineItemCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomLineItemCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "HttpDestinationAuthenticationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "AuthorizationHeader", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AuthorizationHeaderInput", + "ofType": null }, - { - "name": "setCustomLineItemCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomLineItemCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "AzureFunctions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AzureFunctionsAuthenticationInput", + "ofType": null }, - { - "name": "setCustomLineItemShippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomLineItemShippingDetails", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AuthorizationHeaderInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "headerValue", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomType", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AzureFunctionsAuthenticationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomerEmail", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomerEmail", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AWSLambdaDestinationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "arn", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomerId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomerId", + "defaultValue": null + }, + { + "name": "accessKey", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setDeliveryAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderDeliveryAddress", + "defaultValue": null + }, + { + "name": "accessSecret", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setDeliveryItems", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderDeliveryItems", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TriggerInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "resourceTypeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setLineItemCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderLineItemCustomField", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "actions", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ActionType", + "ofType": null + } + } }, - { - "name": "setLineItemCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderLineItemCustomType", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ExtensionUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changeDestination", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeExtensionDestination", + "ofType": null }, - { - "name": "setLineItemShippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderLineItemShippingDetails", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "changeTriggers", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeExtensionTriggers", + "ofType": null }, - { - "name": "setLocale", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderLocale", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setKey", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetExtensionKey", + "ofType": null }, - { - "name": "setOrderNumber", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderNumber", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "setTimeoutInMs", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetExtensionTimeoutInMs", + "ofType": null }, - { - "name": "setParcelItems", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderParcelItems", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeExtensionDestination", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "destination", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ExtensionDestinationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeExtensionTriggers", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "triggers", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TriggerInput", + "ofType": null + } + } + } }, - { - "name": "setParcelMeasurements", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderParcelMeasurements", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetExtensionKey", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setParcelTrackingData", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderParcelTrackingData", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetExtensionTimeoutInMs", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "timeoutInMs", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setReturnPaymentState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderReturnPaymentState", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CreateApiClient", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setReturnShipmentState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderReturnShipmentState", + "defaultValue": null + }, + { + "name": "scope", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetOrderShippingAddress", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "APIClientWithSecret", + "description": "API Clients can be used to obtain OAuth 2 access tokens. The secret is only\nshown once in the response of creating the API Client.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "transitionCustomLineItemState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TransitionOrderCustomLineItemState", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "transitionLineItemState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TransitionOrderLineItemState", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "scope", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "transitionState", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TransitionOrderState", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastUsedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Date", + "ofType": null }, - { - "name": "updateItemShippingAddress", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateOrderItemShippingAddress", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "secret", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "updateSyncInfo", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateOrderSyncInfo", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddOrderDelivery", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "items", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Schema", + "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", + "fields": [ + { + "name": "types", + "description": "A list of all types supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeliveryItemDraftType", + "kind": "OBJECT", + "name": "__Type", "ofType": null } } - }, - "defaultValue": "[]" + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryType", + "description": "The type that query operations will be rooted at.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } }, - { - "name": "parcels", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mutationType", + "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriptionType", + "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directives", + "description": "A list of all directives supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeliveryItemDraftType", + "kind": "OBJECT", + "name": "__Directive", "ofType": null } } - }, - "defaultValue": "[]" + } }, - { - "name": "address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DeliveryItemDraftType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Type", + "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", + "fields": [ + { + "name": "kind", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fields", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__Field", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interfaces", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", + "kind": "OBJECT", + "name": "__Type", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddOrderItemShippingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "possibleTypes", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", + "kind": "OBJECT", + "name": "__Type", "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddOrderParcelToDelivery", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "deliveryId", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enumValues", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__EnumValue", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "measurements", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ParcelMeasurementsDraftType", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputFields", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } }, - { - "name": "trackingData", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TrackingDataDraftType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ofType", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SCALAR", + "description": "Indicates this type is a scalar.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LIST", + "description": "Indicates this type is a list. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NON_NULL", + "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Field", + "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "items", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeliveryItemDraftType", + "kind": "OBJECT", + "name": "__InputValue", "ofType": null } } - }, - "defaultValue": "[]" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ParcelMeasurementsDraftType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "heightInMillimeter", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "lengthInMillimeter", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "widthInMillimeter", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__InputValue", + "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "weightInGram", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TrackingDataDraftType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "trackingId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultValue", + "description": "A GraphQL-formatted string representing the default value for this input value.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "carrier", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__EnumValue", + "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "provider", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "providerTransaction", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Directive", + "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "isReturn", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddOrderPayment", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "payment", - "description": null, - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": null + } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddOrderReturnInfo", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "items", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReturnItemDraftType", - "ofType": null - } + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "returnDate", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__DirectiveLocation", + "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "QUERY", + "description": "Location adjacent to a query operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MUTATION", + "description": "Location adjacent to a mutation operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SUBSCRIPTION", + "description": "Location adjacent to a subscription operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD", + "description": "Location adjacent to a field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_DEFINITION", + "description": "Location adjacent to a fragment definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_SPREAD", + "description": "Location adjacent to a fragment spread.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INLINE_FRAGMENT", + "description": "Location adjacent to an inline fragment.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VARIABLE_DEFINITION", + "description": "Location adjacent to a variable definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCHEMA", + "description": "Location adjacent to a schema definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCALAR", + "description": "Location adjacent to a scalar definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Location adjacent to an object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_DEFINITION", + "description": "Location adjacent to a field definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARGUMENT_DEFINITION", + "description": "Location adjacent to an argument definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Location adjacent to an interface definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Location adjacent to a union definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Location adjacent to an enum definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM_VALUE", + "description": "Location adjacent to an enum value definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Location adjacent to an input object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_FIELD_DEFINITION", + "description": "Location adjacent to an input object field definition.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AWSLambdaDestination", + "description": null, + "fields": [ + { + "name": "arn", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "returnTrackingId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ReturnItemDraftType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessSecret", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ExtensionDestination", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AbsoluteDiscountValue", + "description": null, + "fields": [ + { + "name": "money", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "lineItemId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "customLineItemId", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartDiscountValue", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "ProductDiscountValue", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderCustomLineItemOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "comment", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "draft", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomLineItemDraftOutput", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomLineItemDraftOutput", + "description": null, + "fields": [ + { + "name": "money", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "slug", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "shipmentState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReturnShipmentState", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeOrderState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "orderState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OrderState", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeOrderPaymentState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "paymentState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PaymentState", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeOrderShipmentState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shipmentState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ShipmentState", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportOrderCustomLineItemState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsCommand", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingDetails", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ItemShippingDetailsDraftOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "state", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ItemStateDraftType", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ItemStateDraftType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategory", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use 'taxCategoryResId' to fetch the resource identifier." + }, + { + "name": "nameAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "state", - "description": null, - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategoryResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Country", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subRates", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SubRate", + "ofType": null + } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportOrderLineItemState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "includedInPrice", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomFieldsCommand", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "typeKey", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fields", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use 'typeResId' to fetch the resource identifier." + }, + { + "name": "typeResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ItemShippingDetailsDraftOutput", + "description": null, + "fields": [ + { + "name": "targets", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ItemShippingTarget", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "state", - "description": null, - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderDeliveryOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ItemStateDraftType", - "ofType": null - } + "kind": "OBJECT", + "name": "DeliveryItem", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveOrderDelivery", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "deliveryId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveOrderItemShippingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveOrderParcelFromDelivery", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "parcelId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveOrderPayment", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "payment", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderBillingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parcels", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ParcelData", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomLineItemCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ParcelData", + "description": null, + "fields": [ + { + "name": "measurements", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ParcelMeasurements", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomLineItemCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingData", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TrackingData", + "ofType": null }, - { - "name": "fields", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", + "kind": "OBJECT", + "name": "DeliveryItem", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderDiscountCodeOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeKey", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "code", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "validateDuplicates", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderItemShippingAddressOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomLineItemShippingDetails", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderLineItemOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "draft", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LineItemDraftOutput", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LineItemDraftOutput", + "description": null, + "fields": [ + { + "name": "productId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "shippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraftType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraftType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "targets", - "description": null, - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sku", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variantId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomFieldsCommand", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalPrice", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTotalPrice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalLineItemTotalPrice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingDetails", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ItemShippingDetailsDraftOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distributionChannel", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use 'distributionChannelResId' to fetch the resource identifier." + }, + { + "name": "supplyChannel", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Use 'supplyChannelResId' to fetch the resource identifier." + }, + { + "name": "distributionChannelResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyChannelResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExternalLineItemTotalPrice", + "description": null, + "fields": [ + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalPrice", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderParcelToDeliveryOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deliveryId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "measurements", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ParcelMeasurements", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingData", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TrackingData", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShippingTargetDraftType", - "ofType": null - } + "kind": "OBJECT", + "name": "DeliveryItem", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingTargetDraftType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addressKey", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "fields", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderPaymentOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentResId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderReturnInfoOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", + "kind": "OBJECT", + "name": "ReturnItemDraftTypeOutput", "ofType": null } } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnTrackingId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeKey", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReturnItemDraftTypeOutput", + "description": null, + "fields": [ + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "typeId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomerEmail", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "email", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipmentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnShipmentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AddStagedOrderShoppingListOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderCustomerId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customerId", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shoppingListResId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyChannelResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChannelReferenceIdentifier", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distributionChannelResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChannelReferenceIdentifier", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChannelReferenceIdentifier", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderDeliveryAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "deliveryId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Applied", + "description": null, + "fields": [ + { + "name": "appliedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderDeliveryItems", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "deliveryId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "excerptBeforeEdit", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderExcerpt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "excerptAfterEdit", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrderExcerpt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OrderEditResult", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrderExcerpt", + "description": null, + "fields": [ + { + "name": "totalPrice", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } }, - { - "name": "items", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeliveryItemDraftType", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderLineItemCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxedPrice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TaxedPrice", + "ofType": null }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AuthorizationHeader", + "description": null, + "fields": [ + { + "name": "headerValue", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderLineItemCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "HttpDestinationAuthentication", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "HttpDestinationAuthentication", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "AuthorizationHeader", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AzureFunctionsAuthentication", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "AzureFunctionsAuthentication", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "HttpDestinationAuthentication", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AzureServiceBusDestination", + "description": null, + "fields": [ + { + "name": "connectionString", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Destination", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BooleanAttribute", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BooleanAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BooleanField", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - { - "name": "fields", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BooleanType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartClassificationType", + "description": null, + "fields": [ + { + "name": "values", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", + "kind": "OBJECT", + "name": "ShippingRateInputLocalizedEnumValue", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "typeKey", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "typeId", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRateInputType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingRateInputLocalizedEnumValue", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderLineItemShippingDetails", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "shippingDetails", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ItemShippingDetailsDraftType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderLocale", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "locale", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderNumber", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "orderNumber", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderParcelItems", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "parcelId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "items", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeliveryItemDraftType", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderParcelMeasurements", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "parcelId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "measurements", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ParcelMeasurementsDraftType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderParcelTrackingData", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "parcelId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "trackingData", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TrackingDataDraftType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderReturnPaymentState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "returnItemId", - "description": null, - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "paymentState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReturnPaymentState", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderReturnShipmentState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "returnItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartScoreType", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRateInputType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartValueType", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRateInputType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderCustomLineItemMoneyOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "shipmentState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReturnShipmentState", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetOrderShippingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TransitionOrderCustomLineItemState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "money", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderCustomLineItemQuantityOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "fromState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "toState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderLineItemQuantityOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "actualTransitionDate", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TransitionOrderLineItemState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "fromState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalPrice", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null }, - { - "name": "toState", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTotalPrice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalLineItemTotalPrice", + "ofType": null }, - { - "name": "actualTransitionDate", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderOrderStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TransitionOrderState", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "state", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "force", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrderState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderPaymentStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "false" - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateOrderItemShippingAddress", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "address", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "AddressInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateOrderSyncInfo", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "channel", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "syncedAt", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PaymentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderShipmentStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipmentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ShipmentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderTaxCalculationModeOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCalculationMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxCalculationMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderTaxModeOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TaxMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ChangeStagedOrderTaxRoundingModeOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxRoundingMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RoundingMode", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ClassificationShippingRateInput", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "externalId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OrderMyCartCommand", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedString", + "ofType": null + } } - }, - "defaultValue": null + } }, - { - "name": "version", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { "kind": "SCALAR", - "name": "Long", + "name": "Locale", "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShoppingListDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "defaultValue": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lineItems", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShoppingListLineItemDraft", - "ofType": null - } - } - }, - "defaultValue": "[]" - }, - { - "name": "textLineItems", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TextLineItemDraft", - "ofType": null - } - } - }, - "defaultValue": "[]" + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRateInput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ClassificationShippingRateInputDraftOutput", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "deleteDaysAfterLastModification", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRateInputDraftOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "ShippingRateInputDraftOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "customer", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ClassificationShippingRateInputDraftOutput", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ScoreShippingRateInputDraftOutput", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "CloudEventsSubscriptionsFormat", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "slug", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "anonymousId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cloudEventsVersion", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShoppingListLineItemDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "productId", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "NotificationFormat", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomLineItemReturnItem", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "variantId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Long", "ofType": null - }, - "defaultValue": "1" + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipmentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnShipmentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnPaymentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "addedAt", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TextLineItemDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ReturnItem", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomLineItemsTarget", + "description": null, + "fields": [ + { + "name": "predicate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "description", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartDiscountTarget", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomSuggestTokenizer", + "description": null, + "fields": [ + { + "name": "inputs", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "1" - }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "addedAt", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SuggestTokenizer", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomerGroupReferenceIdentifier", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShoppingListUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddShoppingListLineItem", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addTextLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddShoppingListTextLineItem", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeLineItemQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListLineItemQuantity", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeLineItemsOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListLineItemsOrder", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListName", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeTextLineItemName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListTextLineItemName", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeTextLineItemQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListTextLineItemQuantity", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeTextLineItemsOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListTextLineItemsOrder", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "removeLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveShoppingListLineItem", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "removeTextLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveShoppingListTextLineItem", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "setAnonymousId", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListAnonymousId", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListCustomField", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListCustomType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "setCustomer", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListCustomer", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "setDeleteDaysAfterLastModification", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListDeleteDaysAfterLastModification", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListDescription", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setKey", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListKey", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "setLineItemCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListLineItemCustomField", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DateAttribute", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setLineItemCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListLineItemCustomType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "setSlug", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListSlug", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DateAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "setTextLineItemCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListTextLineItemCustomField", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DateField", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Date", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setTextLineItemCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListTextLineItemCustomType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "setTextLineItemDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListTextLineItemDescription", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddShoppingListLineItem", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addedAt", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DateTimeAttribute", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DateTimeAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": "1" - }, - { - "name": "variantId", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DateTimeField", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "sku", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "productId", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DateTimeType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddShoppingListTextLineItem", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addedAt", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DateType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EnumAttribute", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": "1" + } }, - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EnumAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "values", + "description": null, + "args": [ + { + "name": "includeKeys", + "description": "The keys of the enum values to include.\n\nIf neither `includeKeys` nor `excludeKeys` are provided, then all enum values are returned.", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "excludeKeys", + "description": "The keys of the enum values to exclude.\n\nIf neither `includeKeys` nor `excludeKeys` are provided, then all enum values are returned.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "SCALAR", + "name": "String", "ofType": null } } - } + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListLineItemQuantity", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "limit", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "offset", + "description": null, + "type": { "kind": "SCALAR", "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListLineItemsOrder", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemOrder", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { @@ -51060,7540 +72749,7422 @@ "ofType": null } } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PlainEnumValueResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlainEnumValueResult", + "description": null, + "fields": [ + { + "name": "limit", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } + "kind": "OBJECT", + "name": "PlainEnumValue", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListTextLineItemName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "textLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListTextLineItemQuantity", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "textLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "quantity", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListTextLineItemsOrder", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "textLineItemOrder", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveShoppingListLineItem", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlainEnumValue", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "quantity", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RemoveShoppingListTextLineItem", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "textLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "quantity", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EnumField", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListAnonymousId", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "anonymousId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "value", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "fields", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EnumType", + "description": null, + "fields": [ + { + "name": "values", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", + "kind": "OBJECT", + "name": "EnumValue", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EnumValue", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "typeKey", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "EventGridDestination", + "description": null, + "fields": [ + { + "name": "uri", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListCustomer", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "customer", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListDeleteDaysAfterLastModification", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "deleteDaysAfterLastModification", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Destination", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExternalDiscountValue", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ProductDiscountValue", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ExternalTaxAmountDraftOutput", + "description": null, + "fields": [ + { + "name": "totalGross", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxRate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GiftLineItemValue", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variantId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListKey", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListLineItemCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductReferenceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distributionChannelRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChannelReferenceIdentifier", + "ofType": null }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "supplyChannelRef", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChannelReferenceIdentifier", + "ofType": null }, - { - "name": "value", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartDiscountValue", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductReferenceIdentifier", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListLineItemCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "lineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "GoogleCloudPubSubDestination", + "description": null, + "fields": [ + { + "name": "projectId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeKey", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "topic", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListSlug", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "slug", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListTextLineItemCustomField", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "textLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Destination", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "HighPrecisionMoney", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currencyCode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preciseAmount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "centAmount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } }, - { - "name": "value", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fractionDigits", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "HttpDestination", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListTextLineItemCustomType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "textLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "fields", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldInput", - "ofType": null - } - } - }, - "defaultValue": null + } }, - { - "name": "type", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ResourceIdentifierInput", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeKey", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authentication", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "HttpDestinationAuthentication", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ExtensionDestination", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImportStagedOrderCustomLineItemStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "typeId", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListTextLineItemDescription", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "textLineItemId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Set", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Set", + "description": "A set.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImportStagedOrderLineItemStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "state", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Set", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LineItemReturnItem", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "comment", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipmentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnShipmentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnPaymentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ReturnItem", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LineItemsTarget", + "description": null, + "fields": [ + { + "name": "predicate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartDiscountTarget", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizableEnumAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "values", + "description": null, + "args": [ + { + "name": "includeKeys", + "description": "The keys of the enum values to include.\n\nIf neither `includeKeys` nor `excludeKeys` are provided, then all enum values are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "excludeKeys", + "description": "The keys of the enum values to exclude.\n\nIf neither `includeKeys` nor `excludeKeys` are provided, then all enum values are returned.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null + { + "name": "sort", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizableEnumValueTypeResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizableEnumValueTypeResult", + "description": null, + "fields": [ + { + "name": "limit", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "OBJECT", + "name": "LocalizableEnumValueType", "ofType": null } } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizableEnumValueType", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MyShoppingListDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "SCALAR", + "name": "Locale", "ofType": null } } - } - }, - "defaultValue": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "description", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizableTextAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedEnumAttribute", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedEnumField", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "lineItems", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedEnumType", + "description": null, + "fields": [ + { + "name": "values", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShoppingListLineItemDraft", + "kind": "OBJECT", + "name": "LocalizedEnumValue", "ofType": null } } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedEnumValue", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "label", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": "[]" + { + "name": "acceptLanguage", + "description": "List of languages the client is able to understand, and which locale variant is preferred.", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "textLineItems", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "TextLineItemDraft", + "kind": "OBJECT", + "name": "LocalizedString", "ofType": null } } - }, - "defaultValue": "[]" + } }, - { - "name": "custom", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomFieldsDraft", - "ofType": null - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedStringAttribute", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "deleteDaysAfterLastModification", - "description": null, - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MyShoppingListUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "addLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddShoppingListLineItem", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "addTextLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddShoppingListTextLineItem", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedStringField", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [ + { + "name": "locale", + "description": "String is defined for different locales. This argument specifies the desired locale.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "changeLineItemQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListLineItemQuantity", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeLineItemsOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListLineItemsOrder", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedStringType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListName", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MoneyAttribute", + "description": null, + "fields": [ + { + "name": "centAmount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeTextLineItemName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListTextLineItemName", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currencyCode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeTextLineItemQuantity", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListTextLineItemQuantity", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MoneyAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeTextLineItemsOrder", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeShoppingListTextLineItemsOrder", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MoneyField", + "description": null, + "fields": [ + { + "name": "centAmount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null - }, - { - "name": "removeLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveShoppingListLineItem", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currencyCode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "removeTextLineItem", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RemoveShoppingListTextLineItem", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MoneyType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "setCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListCustomField", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MultiBuyCustomLineItemsTarget", + "description": null, + "fields": [ + { + "name": "predicate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListCustomType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triggerQuantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setDeleteDaysAfterLastModification", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListDeleteDaysAfterLastModification", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountedQuantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxOccurrence", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListDescription", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selectionMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SelectionMode", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setLineItemCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListLineItemCustomField", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "setLineItemCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListLineItemCustomType", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartDiscountTarget", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MultiBuyLineItemsTarget", + "description": null, + "fields": [ + { + "name": "predicate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setTextLineItemCustomField", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListTextLineItemCustomField", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "triggerQuantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "setTextLineItemCustomType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListTextLineItemCustomType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountedQuantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "maxOccurrence", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setTextLineItemDescription", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetShoppingListTextLineItemDescription", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectSettingsUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "changeCartsConfiguration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsCartsConfiguration", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "selectionMode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SelectionMode", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeCountries", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsCountries", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeCurrencies", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsCurrencies", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartDiscountTarget", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NestedAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "typeReference", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeLanguages", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsLanguages", + } + }, + "isDeprecated": true, + "deprecationReason": "Use 'typeReferenceRef' to fetch the reference." + }, + { + "name": "typeRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "changeMessagesConfiguration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsMessagesConfiguration", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeMessagesEnabled", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsMessagesEnabled", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NotProcessed", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsName", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OrderEditResult", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NumberAttribute", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changeShoppingListsConfiguration", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsShoppingListsConfiguration", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "BigDecimal", + "description": "The `BigDecimal` scalar type represents signed fractional values with arbitrary precision.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NumberAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "setExternalOAuth", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProjectSettingsExternalOAuth", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NumberField", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "setShippingRateInputType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetProjectSettingsShippingRateInputType", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsCartsConfiguration", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "cartsConfiguration", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CartsConfigurationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartsConfigurationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "deleteDaysAfterLastModification", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NumberType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsCountries", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "countries", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Country", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsCurrencies", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "currencies", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PlatformFormat", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "NotificationFormat", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Point", + "description": null, + "fields": [ + { + "name": "coordinates", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null - } + "kind": "SCALAR", + "name": "Float", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsLanguages", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "languages", - "description": null, - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Geometry", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PreviewFailure", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "errors", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } + "kind": "SCALAR", + "name": "Json", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsMessagesConfiguration", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "messagesConfiguration", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MessagesConfigurationDraft", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MessagesConfigurationDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "enabled", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "deleteDaysAfterCreation", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsMessagesEnabled", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "messagesEnabled", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeProjectSettingsShoppingListsConfiguration", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shoppingListsConfiguration", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShoppingListsConfigurationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShoppingListsConfigurationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "deleteDaysAfterLastModification", - "description": null, - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OrderEditResult", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PreviewSuccess", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProjectSettingsExternalOAuth", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "externalOAuth", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ExternalOAuthDraft", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ExternalOAuthDraft", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "url", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "authorizationHeader", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetProjectSettingsShippingRateInputType", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "shippingRateInputType", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShippingRateInputTypeInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShippingRateInputTypeInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "CartValue", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CartValueInput", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "preview", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Order", "ofType": null - }, - "defaultValue": null - }, - { - "name": "CartClassification", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CartClassificationInput", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "OrderEditResult", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PriceFunction", + "description": null, + "fields": [ + { + "name": "function", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currencyCode", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Currency", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RecalculateStagedOrderOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "CartScore", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CartScoreInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartValueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dummy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartClassificationInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "values", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedEnumValueInput", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LocalizedEnumValueInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartScoreInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "dummy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateStore", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "languages", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StoreUpdateAction", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "setLanguages", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetStoreLanguages", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProductData", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "defaultValue": null - }, - { - "name": "setName", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SetStoreName", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReferenceAttribute", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetStoreLanguages", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "languages", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetStoreName", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedStringItemInputType", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateApiClient", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "scope", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "APIClientWithSecret", - "description": "API Clients can be used to obtain OAuth 2 access tokens. The secret is only shown once in the response of creating the API Client.", - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "scope", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "lastUsedAt", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Date", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReferenceAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "referenceTypeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "secret", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "fields": [ - { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReferenceField", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReferenceType", + "description": null, + "fields": [ + { + "name": "referenceTypeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RelativeDiscountValue", + "description": null, + "fields": [ + { + "name": "permyriad", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "directives", - "description": "A list of all directives supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "fields": [ - { - "name": "kind", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartDiscountValue", + "ofType": null + }, + { + "kind": "INTERFACE", + "name": "ProductDiscountValue", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderCustomLineItemOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderDeliveryOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deliveryId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderDiscountCodeOutput", + "description": null, + "fields": [ + { + "name": "discountCode", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "DiscountCode", + "ofType": null }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountCodeRef", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Reference", + "ofType": null + } }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderItemShippingAddressOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "addressKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderLineItemOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null }, - { - "name": "inputFields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalPrice", + "description": null, + "args": [], + "type": { + "kind": "INTERFACE", + "name": "BaseMoney", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTotalPrice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalLineItemTotalPrice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingDetailsToRemove", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ItemShippingDetailsDraftOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderParcelFromDeliveryOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parcelId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RemoveStagedOrderPaymentOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentResId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "ResourceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SNSDestination", + "description": null, + "fields": [ + { + "name": "topicArn", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessSecret", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Destination", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SQSDestination", + "description": null, + "fields": [ + { + "name": "queueUrl", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessSecret", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "region", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Destination", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ScoreShippingRateInput", + "description": null, + "fields": [ + { + "name": "score", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRateInput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ScoreShippingRateInputDraftOutput", + "description": null, + "fields": [ + { + "name": "score", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRateInputDraftOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "elementType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderBillingAddressOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCountryOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Directive", - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "country", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Country", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomFieldOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Json", + "ofType": null }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AbsoluteDiscountValue", - "description": null, - "fields": [ - { - "name": "money", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemCustomFieldOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartDiscountValue", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Json", "ofType": null }, - { - "kind": "INTERFACE", - "name": "ProductDiscountValue", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "ActiveCartInterface", - "description": "A field to access the active cart.", - "fields": [ - { - "name": "activeCart", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Cart", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [] - }, - { - "kind": "OBJECT", - "name": "BooleanAttribute", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemCustomTypeOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BooleanAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BooleanField", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomFieldsCommand", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemShippingDetailsOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BooleanType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CartClassificationType", - "description": null, - "fields": [ - { - "name": "values", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShippingRateInputLocalizedEnumValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ShippingRateInputType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingDetails", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ItemShippingDetailsDraftOutput", "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingRateInputLocalizedEnumValue", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "label", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemTaxAmountOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "labelAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CartScoreType", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ShippingRateInputType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CartValueType", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ShippingRateInputType", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxAmount", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxAmountDraftOutput", "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ChannelReferenceIdentifier", - "description": null, - "fields": [ - { - "name": "typeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "id", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomLineItemTaxRateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "key", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ClassificationShippingRateInput", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null }, - { - "name": "labelAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomShippingMethodOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "label", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethodName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ShippingRateInput", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingRate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShippingRate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategoryResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CustomLineItemReturnItem", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "customLineItemId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomTypeOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomFieldsCommand", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomerEmailOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomerGroupOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerGroupResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomerGroupReferenceIdentifier", + "ofType": null }, - { - "name": "comment", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderCustomerIdOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customerId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "shipmentState", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReturnShipmentState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderDeliveryAddressOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "paymentState", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReturnPaymentState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deliveryId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ReturnItem", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CustomLineItemsTarget", - "description": null, - "fields": [ - { - "name": "predicate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderDeliveryItemsOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deliveryId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeliveryItem", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartDiscountTarget", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemCustomFieldOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Json", "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DateAttribute", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DateAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DateField", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Date", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemCustomTypeOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DateTimeAttribute", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "custom", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomFieldsCommand", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemDistributionChannelOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DateTimeAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "distributionChannelResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ChannelReferenceIdentifier", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemPriceOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalPrice", + "description": null, + "args": [], + "type": { "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DateTimeField", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "name": "BaseMoney", + "ofType": null }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DateTimeType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DateType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnumAttribute", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemShippingDetailsOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnumAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "values", - "description": null, - "args": [ - { - "name": "includeKeys", - "description": "The keys of the enum values to include.\n\nIf neither `includeKeys` nor `excludeKeys` are provided, then all enum values are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeKeys", - "description": "The keys of the enum values to exclude.\n\nIf neither `includeKeys` nor `excludeKeys` are provided, then all enum values are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PlainEnumValueResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingDetails", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ItemShippingDetailsDraftOutput", + "ofType": null }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PlainEnumValueResult", - "description": null, - "fields": [ - { - "name": "limit", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemTaxAmountOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "offset", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxAmount", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxAmountDraftOutput", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemTaxRateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLineItemTotalPriceOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTotalPrice", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalLineItemTotalPrice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderLocaleOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Locale", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderOrderNumberOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderNumber", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderOrderTotalTaxOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTotalGross", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxPortions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PlainEnumValue", - "ofType": null - } + "kind": "OBJECT", + "name": "TaxPortion", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PlainEnumValue", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnumField", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderParcelItemsOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnumType", - "description": null, - "fields": [ - { - "name": "values", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parcelId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "items", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EnumValue", - "ofType": null - } + "kind": "OBJECT", + "name": "DeliveryItem", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderParcelMeasurementsOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnumValue", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parcelId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ExternalDiscountValue", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ProductDiscountValue", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GiftLineItemValue", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "measurements", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ParcelMeasurements", + "ofType": null }, - { - "name": "variantId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderParcelTrackingDataOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "productRef", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductReferenceIdentifier", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parcelId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "distributionChannelRef", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ChannelReferenceIdentifier", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackingData", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TrackingData", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderReturnPaymentStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "paymentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnPaymentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderReturnShipmentStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "supplyChannelRef", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "returnItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shipmentState", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ReturnShipmentState", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingAddressAndCustomShippingMethodOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "ChannelReferenceIdentifier", + "name": "Address", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartDiscountValue", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductReferenceIdentifier", - "description": null, - "fields": [ - { - "name": "typeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "id", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethodName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingRate", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ShippingRate", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "taxCategoryResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null }, - { - "name": "key", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingAddressAndShippingMethodOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "HighPrecisionMoney", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } }, - { - "name": "currencyCode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethodResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null }, - { - "name": "preciseAmount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null }, - { - "name": "centAmount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingAddressOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "fractionDigits", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "BaseMoney", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Address", "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LineItemReturnItem", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "lineItemId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingMethodOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingMethodResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null }, - { - "name": "quantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null }, - { - "name": "comment", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingMethodTaxAmountOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "shipmentState", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReturnShipmentState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxAmount", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxAmountDraftOutput", + "ofType": null }, - { - "name": "paymentState", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReturnPaymentState", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingMethodTaxRateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "lastModifiedAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalTaxRate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ExternalTaxRateDraftOutput", + "ofType": null }, - { - "name": "createdAt", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderShippingRateInputOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingRateInput", + "description": null, + "args": [], + "type": { "kind": "INTERFACE", - "name": "ReturnItem", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LineItemsTarget", - "description": null, - "fields": [ - { - "name": "predicate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "name": "ShippingRateInputDraftOutput", + "ofType": null }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartDiscountTarget", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetStagedOrderStoreOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "storeResId", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ResourceIdentifier", "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizableEnumAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "values", - "description": null, - "args": [ - { - "name": "includeKeys", - "description": "The keys of the enum values to include.\n\nIf neither `includeKeys` nor `excludeKeys` are provided, then all enum values are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "excludeKeys", - "description": "The keys of the enum values to exclude.\n\nIf neither `includeKeys` nor `excludeKeys` are provided, then all enum values are returned.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizableEnumValueTypeResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizableEnumValueTypeResult", - "description": null, - "fields": [ - { - "name": "limit", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SetType", + "description": null, + "fields": [ + { + "name": "elementType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingRateCartClassificationPriceTier", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isMatching", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "offset", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRatePriceTier", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingRateCartScorePriceTier", + "description": null, + "fields": [ + { + "name": "score", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Int", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "total", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Money", + "ofType": null }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizableEnumValueType", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizableEnumValueType", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceFunction", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "PriceFunction", + "ofType": null }, - { - "name": "label", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isMatching", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizableTextAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedEnumAttribute", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRatePriceTier", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingRateCartValuePriceTier", + "description": null, + "fields": [ + { + "name": "minimumCentAmount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Money", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isMatching", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, - { - "name": "label", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedEnumField", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "ShippingRatePriceTier", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingTarget", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CartDiscountTarget", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StringAttribute", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedEnumType", - "description": null, - "fields": [ - { - "name": "values", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedEnumValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StringField", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedEnumValue", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "acceptLanguage", - "description": "List of languages the client is able to understand, and which locale variant is preferred.", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedString", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedStringAttribute", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "StringType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedStringField", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [ - { - "name": "locale", - "description": "String is defined for different locales. This argument specifies the desired locale.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Locale", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TextAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedStringType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MoneyAttribute", - "description": null, - "fields": [ - { - "name": "centAmount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "currencyCode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MoneyAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MoneyField", - "description": null, - "fields": [ - { - "name": "centAmount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "currencyCode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MoneyType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MultiBuyCustomLineItemsTarget", - "description": null, - "fields": [ - { - "name": "predicate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "triggerQuantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountedQuantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "maxOccurrence", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Time", + "description": "Time is a scalar value that represents an ISO8601 formatted time.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TimeAttribute", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "selectionMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SelectionMode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartDiscountTarget", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "MultiBuyLineItemsTarget", - "description": null, - "fields": [ - { - "name": "predicate", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "triggerQuantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountedQuantity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "maxOccurrence", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Attribute", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TimeAttributeDefinitionType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "selectionMode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SelectionMode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartDiscountTarget", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NestedAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "typeReference", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Reference", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NumberAttribute", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "BigDecimal", - "description": "The `BigDecimal` scalar type represents signed fractional values with arbitrary precision.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NumberAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NumberField", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NumberType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Point", - "description": null, - "fields": [ - { - "name": "coordinates", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Geometry", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PriceFunction", - "description": null, - "fields": [ - { - "name": "function", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "currencyCode", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Currency", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ReferenceAttribute", - "description": null, - "fields": [ - { - "name": "typeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ReferenceAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "referenceTypeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ReferenceField", - "description": null, - "fields": [ - { - "name": "typeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ReferenceType", - "description": null, - "fields": [ - { - "name": "referenceTypeId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RelativeDiscountValue", - "description": null, - "fields": [ - { - "name": "permyriad", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartDiscountValue", - "ofType": null - }, - { - "kind": "INTERFACE", - "name": "ProductDiscountValue", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ScoreShippingRateInput", - "description": null, - "fields": [ - { - "name": "score", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ShippingRateInput", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SetAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "elementType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SetType", - "description": null, - "fields": [ - { - "name": "elementType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingRateCartClassificationPriceTier", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "AttributeDefinitionType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TimeField", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "CustomField", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TimeType", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "FieldType", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransitionStagedOrderCustomLineItemStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "price", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customLineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "isMatching", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromStateResId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toStateResId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actualTransitionDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ShippingRatePriceTier", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingRateCartScorePriceTier", - "description": null, - "fields": [ - { - "name": "score", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransitionStagedOrderLineItemStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "price", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Money", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lineItemId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "priceFunction", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PriceFunction", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "quantity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fromStateResId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "toStateResId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actualTransitionDate", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "isMatching", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TransitionStagedOrderStateOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "stateResId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResourceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "force", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UpdateStagedOrderItemShippingAddressOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "address", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Address", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UpdateStagedOrderSyncInfoOutput", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "channelResId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChannelReferenceIdentifier", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "syncedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ShippingRatePriceTier", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingRateCartValuePriceTier", - "description": null, - "fields": [ - { - "name": "minimumCentAmount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "externalId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "price", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Money", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "StagedOrderUpdateActionOutput", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "WhitespaceSuggestTokenizer", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "SuggestTokenizer", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + } + ], + "directives": [ + { + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"], + "args": [ + { + "name": "if", + "description": "Skipped when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - { - "name": "isMatching", - "description": null, - "args": [], - "type": { + "defaultValue": null + } + ] + }, + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"], + "args": [ + { + "name": "if", + "description": "Included when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "ShippingRatePriceTier", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingTarget", - "description": null, - "fields": [ - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CartDiscountTarget", + "defaultValue": null + } + ] + }, + { + "name": "deprecated", + "description": "Marks an element of a GraphQL schema as no longer supported.", + "locations": ["FIELD_DEFINITION", "ENUM_VALUE"], + "args": [ + { + "name": "reason", + "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).", + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StringAttribute", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StringField", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StringType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TextAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Time", - "description": "Time is a scalar value that represents an ISO8601 formatted time.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimeAttribute", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Attribute", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimeAttributeDefinitionType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "AttributeDefinitionType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimeField", - "description": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "CustomField", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TimeType", - "description": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "FieldType", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - } - ], - "directives": [ - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "deprecated", - "description": "Marks an element of a GraphQL schema as no longer supported.", - "locations": [ - "ENUM_VALUE", - "FIELD_DEFINITION" - ], - "args": [ - { - "name": "reason", - "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": "\"No longer supported\"" - } - ] - } - ] - } - }, - "extensions": { - "graphql-config": { - "source": "https://mc-api.europe-west1.gcp.commercetools.com/graphql", - "timestamp": "Fri Jan 24 2020 11:39:35 GMT+0100 (Central European Standard Time)" - } + "defaultValue": "\"No longer supported\"" + } + ] + } + ] } -} \ No newline at end of file +} diff --git a/schemas/mc.json b/schemas/mc.json index 3906faf0b5..30abb683d5 100644 --- a/schemas/mc.json +++ b/schemas/mc.json @@ -1,216 +1,337 @@ { - "data": { - "__schema": { - "queryType": { - "name": "Query" - }, - "mutationType": { - "name": "Mutation" - }, - "subscriptionType": null, - "types": [ - { - "kind": "OBJECT", - "name": "Query", - "description": "", - "fields": [ - { - "name": "release", - "description": "", - "args": [], - "type": { + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": { + "name": "Mutation" + }, + "subscriptionType": null, + "types": [ + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "release", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amILoggedIn", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amILoggedIn", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "me", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "args": [ + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "invitation", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InvitationWhereInput", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "InvitationQueryResult", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allSupportedResources", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "SupportedResource", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "me", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "project", - "description": "", - "args": [ - { - "name": "key", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allSupportedActionRights", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SupportedActionRight", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "invitation", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "InvitationWhereInput", - "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allSupportedStoreScopes", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SupportedStoreScope", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "InvitationQueryResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allSupportedResources", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allSupportedMenuVisibilities", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SupportedMenuVisibility", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allSupportedOAuthScopes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SupportedResource", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allSupportedActionRights", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allImpliedOAuthScopes", + "description": null, + "args": [ + { + "name": "resourceAccessPermissions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SupportedActionRight", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allSupportedStoreScopes", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "releases", + "description": null, + "args": [ + { + "name": "origin", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SupportedStoreScope", + "kind": "ENUM", + "name": "ReleaseOrigin", "ofType": null } - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allSupportedMenuVisibilities", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ReleaseHistory", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oAuthClient", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SupportedMenuVisibility", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allImpliedOAuthScopes", - "description": "", - "args": [ - { - "name": "resourceAccessPermissions", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OAuthClient", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oAuthClients", + "description": null, + "args": [ + { + "name": "sort", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { @@ -222,400 +343,349 @@ "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "releases", - "description": "", - "args": [ - { - "name": "origin", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ReleaseOrigin", - "ofType": null - } - }, - "defaultValue": null }, - { - "name": "limit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ReleaseHistory", - "ofType": null + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oAuthClient", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + { + "name": "offset", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "OAuthClient", + "name": "OAuthClientQueryResult", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oAuthClients", - "description": "", - "args": [ - { - "name": "sort", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "limit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OAuthClientQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oAuthScopes", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oAuthScopes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PermissionScope", - "ofType": null - } + "kind": "ENUM", + "name": "PermissionScope", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "storeOAuthScopes", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "storeOAuthScopes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PermissionScope", - "ofType": null - } + "kind": "ENUM", + "name": "PermissionScope", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oAuthClientTemplates", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oAuthClientTemplates", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OAuthClientTemplate", - "ofType": null - } + "kind": "OBJECT", + "name": "OAuthClientTemplate", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "User", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "version", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "User", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "firstName", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastName", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "language", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "numberFormat", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "timeZone", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "launchdarklyTrackingId", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "firstName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastName", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "language", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "numberFormat", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timeZone", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "launchdarklyTrackingId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "launchdarklyTrackingGroup", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "launchdarklyTrackingSubgroup", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "launchdarklyTrackingTeam", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -623,43 +693,411 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "launchdarklyTrackingGroup", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "launchdarklyTrackingTenant", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gravatarHash", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultProjectKey", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projects", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MetaData", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "MetaData", + "description": null, + "fields": [ + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ProjectSetting", + "ofType": null + } + ] + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ID", + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectQueryResult", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "QueryResult", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "QueryResult", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ProjectQueryResult", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ReleaseQueryResult", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "OAuthClientQueryResult", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Project", + "description": null, + "fields": [ + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "launchdarklyTrackingSubgroup", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "launchdarklyTrackingTeam", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apiVersion", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "countries", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -671,4579 +1109,3603 @@ "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "launchdarklyTrackingTenant", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currencies", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gravatarHash", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "languages", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultProjectKey", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isProductionProject", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "initialized", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "plan", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projects", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "MetaData", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "MetaData", - "description": "", - "fields": [ - { - "name": "version", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "owner", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Organization", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "suspension", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectSuspension", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "expiry", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectExpiry", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "settings", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "User", + "name": "ProjectSetting", "ofType": null }, - { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "shippingRateInputType", + "description": null, + "args": [], + "type": { "kind": "OBJECT", - "name": "Project", + "name": "ShippingRateInputType", "ofType": null }, - { - "kind": "OBJECT", - "name": "ProjectSetting", - "ofType": null - } - ] - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectQueryResult", - "description": "", - "fields": [ - { - "name": "count", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allAppliedPermissions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AppliedPermission", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allAppliedDataFences", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "UNION", + "name": "AppliedDataFence", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allAppliedActionRights", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "AppliedActionRight", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allAppliedMenuVisibilities", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Project", - "ofType": null - } + "kind": "OBJECT", + "name": "AppliedMenuVisibilities", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "QueryResult", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "QueryResult", - "description": "", - "fields": [ - { - "name": "count", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "ProjectQueryResult", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "ReleaseQueryResult", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "OAuthClientQueryResult", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "Project", - "description": "", - "fields": [ - { - "name": "version", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apiVersion", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countries", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "currencies", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "languages", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isProductionProject", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "initialized", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "plan", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "suspension", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectSuspension", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "expiry", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectExpiry", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "settings", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectSetting", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shippingRateInputType", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ShippingRateInputType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allAppliedPermissions", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AppliedPermission", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allAppliedDataFences", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "UNION", - "name": "AppliedDataFence", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allAppliedActionRights", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AppliedActionRight", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allAppliedMenuVisibilities", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AppliedMenuVisibilities", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "MetaData", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Organization", - "description": "TODO: use `Reference` instead once there is no more usage of the following fields:\n- name\n- createdAt", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": true, - "deprecationReason": "This field will be removed in the future." - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": true, - "deprecationReason": "This field will be removed in the future." - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectSuspension", - "description": "", - "fields": [ - { - "name": "isActive", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reason", - "description": "", - "args": [], - "type": { - "kind": "ENUM", - "name": "ProjectSuspensionReason", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ProjectSuspensionReason", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Other", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Payment", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "TemporaryMaintenance", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectExpiry", - "description": "", - "fields": [ - { - "name": "isActive", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "daysLeft", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectSetting", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastModifiedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectId", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "active", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productSettings", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "currentProductSettings", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "MetaData", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShippingRateInputType", - "description": "", - "fields": [ - { - "name": "type", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ShippingRateType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "values", - "description": "", - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CartClassificationValue", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShippingRateType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CartClassification", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CartScore", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CartValue", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CartClassificationValue", - "description": "", - "fields": [ - { - "name": "key", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allLocaleLabels", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedField", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedField", - "description": "", - "fields": [ - { - "name": "locale", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AppliedPermission", - "description": "", - "fields": [ - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "UNION", - "name": "AppliedDataFence", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "StoreDataFence", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "StoreDataFence", - "description": "", - "fields": [ - { - "name": "value", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "group", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "DataFence", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INTERFACE", - "name": "DataFence", - "description": "", - "fields": [ - { - "name": "type", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "StoreDataFence", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "AppliedActionRight", - "description": "", - "fields": [ - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "group", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AppliedMenuVisibilities", - "description": "", - "fields": [ - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InvitationWhereInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "email", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "organizationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "teamId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InvitationQueryResult", - "description": "Note: you can not brute-force fetch user information\nby trying emails. Only information about the membership itself.", - "fields": [ - { - "name": "version", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isAlreadyAMemberOfTeam", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isKnownUser", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasValidEmail", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gravatarHash", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SupportedResource", - "description": "", - "fields": [ - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SupportedActionRight", - "description": "", - "fields": [ - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "group", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SupportedStoreScope", - "description": "", - "fields": [ - { - "name": "group", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SupportedMenuVisibility", - "description": "", - "fields": [ - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "group", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ReleaseOrigin", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ctp", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mc", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ReleaseHistory", - "description": "", - "fields": [ - { - "name": "title", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "link", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "entries", - "description": "", - "args": [ - { - "name": "limit", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "offset", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ReleaseQueryResult", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ReleaseQueryResult", - "description": "", - "fields": [ - { - "name": "count", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ReleaseEntry", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "QueryResult", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ReleaseEntry", - "description": "", - "fields": [ - { - "name": "guid", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "releasedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "link", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OAuthClient", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastUsedAt", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "secret", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ownerId", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProjectPermission", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectPermission", - "description": "", - "fields": [ - { - "name": "key", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PermissionScope", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "storeKey", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PermissionScope", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "create_anonymous_token", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "get_permission_for_any_project", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "introspect_oauth_tokens", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_api_clients", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_customers", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_extensions", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_global_subscriptions", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_my_orders", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_my_payments", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_my_profile", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_my_shopping_lists", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_order_edits", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_orders", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_payments", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_products", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_project", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_project_settings", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_shopping_lists", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_states", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_stores", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_subscriptions", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "manage_types", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_api_clients", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_customers", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_messages", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_order_edits", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_orders", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_payments", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_products", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_published_products", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_project_settings", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_projects", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_shopping_lists", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_states", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_stores", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "view_types", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OAuthClientQueryResult", - "description": "", - "fields": [ - { - "name": "count", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "total", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OAuthClient", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [ - { - "kind": "INTERFACE", - "name": "QueryResult", - "ofType": null - } - ], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OAuthClientTemplate", - "description": "", - "fields": [ - { - "name": "key", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oAuthScopes", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PermissionScope", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": "", - "fields": [ - { - "name": "random", - "description": "", - "args": [ - { - "name": "byteLength", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateUser", - "description": "", - "args": [ - { - "name": "version", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "actions", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserUpdateAction", - "ofType": null - } - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "invite", - "description": "", - "args": [ - { - "name": "draft", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InvitationInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "origin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "InvitationResult", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createMyProject", - "description": "", - "args": [ - { - "name": "draft", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectDraftType", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "myPermission", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MyPermissionInitializationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectPendingCreation", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createMyOrganization", - "description": "", - "args": [ - { - "name": "draft", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrganizationDraftType", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationCreated", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sendLinkToResetPassword", - "description": "", - "args": [ - { - "name": "email", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "origin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ResetPasswordRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resetPassword", - "description": "", - "args": [ - { - "name": "jwt", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "draft", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordDraft", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "origin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResetUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sendLinkToSignUp", - "description": "", - "args": [ - { - "name": "email", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "language", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "origin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SignUpRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "signUp", - "description": "", - "args": [ - { - "name": "jwt", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "draft", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UserDraft", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "trackingConfigs", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TrackingConfig", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SignedUpUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sendLinkToDeleteAccount", - "description": "", - "args": [ - { - "name": "origin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DeleteAccountRequest", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteAccount", - "description": "", - "args": [ - { - "name": "jwt", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "origin", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeletedUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createOAuthClient", - "description": "", - "args": [ - { - "name": "draft", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OAuthClientCreationInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OAuthClient", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteOAuthClient", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OAuthClient", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserUpdateAction", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "changeName", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeUserName", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MetaData", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Organization", + "description": "TODO: use `Reference` instead once there is no more usage of the following fields:\n- name\n- createdAt", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null - }, - "defaultValue": null - }, - { - "name": "changePassword", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeUserPassword", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": true, + "deprecationReason": "This field will be removed in the future." + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": true, + "deprecationReason": "This field will be removed in the future." + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectSuspension", + "description": null, + "fields": [ + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reason", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "ProjectSuspensionReason", + "ofType": null }, - { - "name": "changeLanguage", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeUserLanguage", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ProjectSuspensionReason", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Other", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Payment", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TemporaryMaintenance", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectExpiry", + "description": null, + "fields": [ + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "daysLeft", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "changeNumberFormat", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeUserNumberFormat", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectSetting", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "setTimeZone", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "SetUserTimeZone", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeUserName", - "description": "NOTE: This is _not_ a username it is the user's name.", - "fields": null, - "inputFields": [ - { - "name": "firstName", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastModifiedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "active", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productSettings", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { "kind": "SCALAR", "name": "String", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "lastName", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeUserPassword", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "password", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeUserLanguage", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "language", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ChangeUserNumberFormat", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "numberFormat", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SetUserTimeZone", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "timeZone", - "description": "NOTE: This is optional as not passing it unsets the timezone.", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "currentProductSettings", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "MetaData", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ShippingRateInputType", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ShippingRateType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "values", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CartClassificationValue", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ShippingRateType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "CartClassification", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CartScore", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CartValue", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartClassificationValue", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InvitationInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "emails", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "organization", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InvitationOrganizationInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "team", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "InvitationTeamInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InvitationOrganizationInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allLocaleLabels", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "LocalizedField", "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "version", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedField", + "description": null, + "fields": [ + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AppliedPermission", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "UNION", + "name": "AppliedDataFence", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "StoreDataFence", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "StoreDataFence", + "description": null, + "fields": [ + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "DataFence", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INTERFACE", + "name": "DataFence", + "description": null, + "fields": [ + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "StoreDataFence", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "AppliedActionRight", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AppliedMenuVisibilities", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InvitationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "organizationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InvitationQueryResult", + "description": "Note: you can not brute-force fetch user information\nby trying emails. Only information about the membership itself.", + "fields": [ + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isAlreadyAMemberOfTeam", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isKnownUser", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasValidEmail", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gravatarHash", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "name", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SupportedResource", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SupportedActionRight", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SupportedStoreScope", + "description": null, + "fields": [ + { + "name": "group", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SupportedMenuVisibility", + "description": null, + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InvitationTeamInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "InvitationResult", - "description": "", - "fields": [ - { - "name": "status", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "InvitationStatus", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "jwt", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "group", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "InvitationStatus", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "InvitationFailure", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "InvitationSent", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PendingRegistration", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectDraftType", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "key", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ReleaseOrigin", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ctp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mc", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReleaseHistory", + "description": null, + "fields": [ + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "link", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "entries", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "offset", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "countries", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "languages", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "defaultValue": null - }, - { - "name": "currencies", - "description": "", - "type": { - "kind": "NON_NULL", + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ReleaseQueryResult", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReleaseQueryResult", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "ReleaseEntry", + "ofType": null } } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "QueryResult", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ReleaseEntry", + "description": null, + "fields": [ + { + "name": "guid", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "releasedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "link", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OAuthClient", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "ownerId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastUsedAt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "messagesEnabled", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "secret", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "deleteDaysAfterCreation", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ownerId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "MyPermissionInitializationInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "teamId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectPendingCreation", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OrganizationDraftType", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "ownerId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrganizationCreated", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "teams", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permissions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "OrganizationTeamsCreated", - "ofType": null - } + "kind": "OBJECT", + "name": "ProjectPermission", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrganizationTeamsCreated", - "description": "Note:\n This is not a `Organization` type as in the future MC schema will not support e.g. expanding on team members on its internal schema.", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectPermission", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PermissionScope", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "storeKey", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PermissionScope", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "create_anonymous_token", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "get_permission_for_any_project", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "introspect_oauth_tokens", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_api_clients", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_customers", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_discount_codes", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_extensions", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_global_subscriptions", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_import_sinks", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_my_orders", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_my_payments", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_my_profile", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_my_shopping_lists", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_order_edits", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_orders", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_payments", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_products", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_project", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_project_settings", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_shopping_lists", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_states", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_stores", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_subscriptions", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_types", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_customer_groups", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_cart_discounts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_shipping_methods", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_tax_categories", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_api_clients", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_customers", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_discount_codes", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_import_sinks", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_messages", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_order_edits", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_orders", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_payments", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_products", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_published_products", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_project_settings", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_projects", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_shopping_lists", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_states", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_stores", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_types", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_customer_groups", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_cart_discounts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_shipping_methods", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_tax_categories", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manage_categories", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "view_categories", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OAuthClientQueryResult", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "offset", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "total", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "results", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OAuthClient", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResetPasswordRequest", - "description": "", - "fields": [ - { - "name": "jwt", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [ + { + "kind": "INTERFACE", + "name": "QueryResult", + "ofType": null + } + ], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OAuthClientTemplate", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ResetPasswordDraft", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "password", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ResetUser", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oAuthScopes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PermissionScope", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignUpRequest", - "description": "", - "fields": [ - { - "name": "jwt", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ + { + "name": "random", + "description": null, + "args": [ + { + "name": "byteLength", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateUser", + "description": null, + "args": [ + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UserDraft", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "firstName", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "lastName", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + { + "name": "actions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserUpdateAction", + "ofType": null + } + } + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "invite", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InvitationInput", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "password", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "origin", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TrackingConfig", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "provider", - "description": "", - "type": { - "kind": "NON_NULL", + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "TrackingProvider", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "InvitationResult", + "ofType": null + } } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createMyProject", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProjectDraftType", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null + { + "name": "myPermission", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MyPermissionInitializationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectPendingCreation", + "ofType": null }, - { - "name": "context", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createMyOrganization", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrganizationDraftType", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationCreated", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sendLinkToResetPassword", + "description": null, + "args": [ + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "origin", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ResetPasswordRequest", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "resetPassword", + "description": null, + "args": [ + { + "name": "jwt", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TrackingProvider", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "HubSpot", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SignedUpUser", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordDraft", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "origin", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeleteAccountRequest", - "description": "", - "fields": [ - { - "name": "jwt", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ResetUser", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sendLinkToSignUp", + "description": null, + "args": [ + { + "name": "email", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DeletedUser", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "language", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OAuthClientCreationInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "origin", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "ownerId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", + { + "name": "additionalInfo", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AdditionalUserInfo", "ofType": null - } - }, - "defaultValue": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "SignUpRequest", + "ofType": null }, - { - "name": "permissions", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "signUp", + "description": null, + "args": [ + { + "name": "jwt", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProjectPermissionInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProjectPermissionInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "key", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PermissionScope", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "projectKey", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "storeKey", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "fields": [ - { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UserDraft", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "trackingConfigs", + "description": null, + "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "INPUT_OBJECT", + "name": "TrackingConfig", "ofType": null } } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SignedUpUser", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sendLinkToDeleteAccount", + "description": null, + "args": [ + { + "name": "origin", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", "ofType": null - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DeleteAccountRequest", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteAccount", + "description": null, + "args": [ + { + "name": "jwt", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], - "type": { + { + "name": "origin", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "DeletedUser", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createOAuthClient", + "description": null, + "args": [ + { + "name": "draft", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OAuthClientCreationInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "OAuthClient", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directives", - "description": "A list of all directives supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteOAuthClient", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "fields": [ - { - "name": "kind", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OAuthClient", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserUpdateAction", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "changeName", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeUserName", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changePassword", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeUserPassword", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeLanguage", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeUserLanguage", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "changeNumberFormat", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeUserNumberFormat", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "setTimeZone", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SetUserTimeZone", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeUserName", + "description": "NOTE: This is _not_ a username it is the user's name.", + "fields": null, + "inputFields": [ + { + "name": "firstName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "lastName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeUserPassword", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeUserLanguage", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "language", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ChangeUserNumberFormat", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "numberFormat", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SetUserTimeZone", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "timeZone", + "description": "NOTE: This is optional as not passing it unsets the timezone.", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InvitationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "emails", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "defaultValue": null + }, + { + "name": "organization", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InvitationOrganizationInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "team", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "InvitationTeamInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InvitationOrganizationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "name", - "description": null, - "args": [], - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InvitationTeamInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "InvitationResult", + "description": null, + "fields": [ + { + "name": "status", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "InvitationStatus", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "email", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "jwt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "InvitationStatus", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "InvitationFailure", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "InvitationSent", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PendingRegistration", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectDraftType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "countries", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "false" + } } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "languages", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Field", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "currencies", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "ownerId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "messagesEnabled", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "deleteDaysAfterCreation", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "MyPermissionInitializationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "teamId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectPendingCreation", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrganizationDraftType", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ownerId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationCreated", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teams", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -5251,50 +4713,516 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "OrganizationTeamsCreated", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationTeamsCreated", + "description": "Note:\n This is not a `Organization` type as in the future MC schema will not support\ne.g. expanding on team members on its internal schema.", + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResetPasswordRequest", + "description": null, + "fields": [ + { + "name": "jwt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ResetPasswordDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ResetUser", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AdditionalUserInfo", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "firstName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "lastName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "jobTitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SignUpRequest", + "description": null, + "fields": [ + { + "name": "jwt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "UserDraft", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "firstName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "lastName", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "password", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TrackingConfig", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "provider", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TrackingProvider", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "context", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TrackingProvider", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "HubSpot", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SignedUpUser", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeleteAccountRequest", + "description": null, + "fields": [ + { + "name": "jwt", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DeletedUser", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OAuthClientCreationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "ownerId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "permissions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", + "kind": "INPUT_OBJECT", + "name": "ProjectPermissionInput", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFields", - "description": null, - "args": [], - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectPermissionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PermissionScope", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "projectKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "storeKey", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Schema", + "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", + "fields": [ + { + "name": "types", + "description": "A list of all types supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -5302,153 +5230,169 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__InputValue", + "name": "__Type", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryType", + "description": "The type that query operations will be rooted at.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", "name": "__Type", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mutationType", + "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriptionType", + "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directives", + "description": "A list of all directives supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Directive", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Type", + "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", + "fields": [ + { + "name": "kind", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fields", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } + "kind": "OBJECT", + "name": "__Field", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interfaces", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5456,669 +5400,755 @@ "name": "__Type", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "possibleTypes", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "__Type", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enumValues", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__EnumValue", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputFields", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "__InputValue", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ofType", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null }, - { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SCALAR", + "description": "Indicates this type is a scalar.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LIST", + "description": "Indicates this type is a list. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NON_NULL", + "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Field", + "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__InputValue", + "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultValue", + "description": "A GraphQL-formatted string representing the default value for this input value.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__EnumValue", + "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Directive", - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Directive", + "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Reference", - "description": "", - "fields": [ - { - "name": "typeId", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ReferenceInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "typeId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - } - ], - "directives": [ - { - "name": "isAuthenticated", - "description": "", - "locations": [ - "FIELD_DEFINITION" - ], - "args": [] - }, - { - "name": "rateLimit", - "description": "", - "locations": [ - "FIELD_DEFINITION" - ], - "args": [ - { - "name": "max", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "window", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__DirectiveLocation", + "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "QUERY", + "description": "Location adjacent to a query operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MUTATION", + "description": "Location adjacent to a mutation operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SUBSCRIPTION", + "description": "Location adjacent to a subscription operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD", + "description": "Location adjacent to a field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_DEFINITION", + "description": "Location adjacent to a fragment definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_SPREAD", + "description": "Location adjacent to a fragment spread.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INLINE_FRAGMENT", + "description": "Location adjacent to an inline fragment.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VARIABLE_DEFINITION", + "description": "Location adjacent to a variable definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCHEMA", + "description": "Location adjacent to a schema definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCALAR", + "description": "Location adjacent to a scalar definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Location adjacent to an object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_DEFINITION", + "description": "Location adjacent to a field definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARGUMENT_DEFINITION", + "description": "Location adjacent to an argument definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Location adjacent to an interface definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Location adjacent to a union definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Location adjacent to an enum definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM_VALUE", + "description": "Location adjacent to an enum value definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Location adjacent to an input object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_FIELD_DEFINITION", + "description": "Location adjacent to an input object field definition.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Reference", + "description": null, + "fields": [ + { + "name": "typeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "message", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "identityArgs", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "arrayLengthField", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ReferenceInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "typeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - } - ] - }, - { - "name": "collectMetrics", - "description": "", - "locations": [ - "FIELD_DEFINITION" - ], - "args": [] - }, - { - "name": "deprecate", - "description": "", - "locations": [ - "FIELD_DEFINITION" - ], - "args": [ - { - "name": "reason", - "description": "", - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null - }, - "defaultValue": null - }, - { - "name": "withCounter", - "description": "", - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + } + ], + "directives": [ + { + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"], + "args": [ + { + "name": "if", + "description": "Skipped when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Boolean", "ofType": null - }, - "defaultValue": "true" + } }, - { - "name": "withLog", - "description": "", - "type": { + "defaultValue": null + } + ] + }, + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"], + "args": [ + { + "name": "if", + "description": "Included when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Boolean", "ofType": null - }, - "defaultValue": "true" - } - ] - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Skipped when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "deprecated", - "description": "Marks an element of a GraphQL schema as no longer supported.", - "locations": [ - "FIELD_DEFINITION", - "ENUM_VALUE" - ], - "args": [ - { - "name": "reason", - "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": "\"No longer supported\"" - } - ] - } - ] - } - }, - "extensions": { - "graphql-config": { - "source": "https://mc-api.europe-west1.gcp.commercetools.com/graphql", - "timestamp": "Fri Jan 24 2020 11:37:47 GMT+0100 (Central European Standard Time)" - } + } + }, + "defaultValue": null + } + ] + }, + { + "name": "deprecated", + "description": "Marks an element of a GraphQL schema as no longer supported.", + "locations": ["FIELD_DEFINITION", "ENUM_VALUE"], + "args": [ + { + "name": "reason", + "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"No longer supported\"" + } + ] + } + ] } -} \ No newline at end of file +} diff --git a/schemas/proxy.json b/schemas/proxy.json index 7559490611..fe59383d13 100644 --- a/schemas/proxy.json +++ b/schemas/proxy.json @@ -1,236 +1,166 @@ { - "data": { - "__schema": { - "queryType": { - "name": "Query" - }, - "mutationType": null, - "subscriptionType": null, - "types": [ - { - "kind": "OBJECT", - "name": "Query", - "description": null, - "fields": [ - { - "name": "applicationsMenu", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ApplicationsMenu", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "allFeatureToggles", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ApplicationsMenu", - "description": null, - "fields": [ - { - "name": "appBar", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": null, + "subscriptionType": null, + "types": [ + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "applicationsMenu", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ApplicationsMenu", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allFeatureToggles", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BaseMenu", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "navBar", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ApplicationsMenu", + "description": null, + "fields": [ + { + "name": "appBar", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NavbarMenu", - "ofType": null - } + "kind": "OBJECT", + "name": "BaseMenu", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "BaseMenu", - "description": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uriPath", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "navBar", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedField", - "ofType": null - } + "kind": "OBJECT", + "name": "NavbarMenu", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "featureToggle", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "BaseMenu", + "description": null, + "fields": [ + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "menuVisibility", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uriPath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actionRights", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -238,329 +168,341 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ActionRight", + "name": "LocalizedField", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataFences", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "featureToggle", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "menuVisibility", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permissions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DataFence", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedField", - "description": null, - "fields": [ - { - "name": "locale", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ActionRight", - "description": null, - "fields": [ - { - "name": "group", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataFence", - "description": null, - "fields": [ - { - "name": "group", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actionRights", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NavbarMenu", - "description": null, - "fields": [ - { - "name": "shouldRenderDivider", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uriPath", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "ActionRight", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "icon", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataFences", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DataFence", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelAllLocales", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedField", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "featureToggle", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedField", + "description": null, + "fields": [ + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "actionRights", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ActionRight", + "description": null, + "fields": [ + { + "name": "group", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DataFence", + "description": null, + "fields": [ + { + "name": "group", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NavbarMenu", + "description": null, + "fields": [ + { + "name": "shouldRenderDivider", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uriPath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -568,266 +510,111 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "ActionRight", + "name": "LocalizedField", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataFences", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "featureToggle", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permissions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DataFence", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "menuVisibility", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submenu", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "BaseMenu", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "fields": [ - { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "actionRights", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "ActionRight", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directives", - "description": "A list of all directives supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "fields": [ - { - "name": "kind", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dataFences", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "__TypeKind", + "kind": "OBJECT", + "name": "DataFence", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "menuVisibility", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submenu", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -835,19 +622,44 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "BaseMenu", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Schema", + "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", + "fields": [ + { + "name": "types", + "description": "A list of all types supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -859,46 +671,59 @@ "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFields", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryType", + "description": "The type that query operations will be rooted at.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mutationType", + "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriptionType", + "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directives", + "description": "A list of all directives supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -906,153 +731,105 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__InputValue", + "name": "__Directive", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Type", + "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", + "fields": [ + { + "name": "kind", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fields", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } + "kind": "OBJECT", + "name": "__Field", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interfaces", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -1060,469 +837,684 @@ "name": "__Type", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "possibleTypes", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enumValues", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__EnumValue", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputFields", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "__InputValue", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ofType", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SCALAR", + "description": "Indicates this type is a scalar.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LIST", + "description": "Indicates this type is a list. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NON_NULL", + "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Field", + "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__InputValue", + "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultValue", + "description": "A GraphQL-formatted string representing the default value for this input value.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__EnumValue", + "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Directive", - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Directive", + "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - } - ], - "directives": [ - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Skipped when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "deprecated", - "description": "Marks an element of a GraphQL schema as no longer supported.", - "locations": [ - "FIELD_DEFINITION", - "ENUM_VALUE" - ], - "args": [ - { - "name": "reason", - "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__DirectiveLocation", + "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "QUERY", + "description": "Location adjacent to a query operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MUTATION", + "description": "Location adjacent to a mutation operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SUBSCRIPTION", + "description": "Location adjacent to a subscription operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD", + "description": "Location adjacent to a field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_DEFINITION", + "description": "Location adjacent to a fragment definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_SPREAD", + "description": "Location adjacent to a fragment spread.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INLINE_FRAGMENT", + "description": "Location adjacent to an inline fragment.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VARIABLE_DEFINITION", + "description": "Location adjacent to a variable definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCHEMA", + "description": "Location adjacent to a schema definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCALAR", + "description": "Location adjacent to a scalar definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Location adjacent to an object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_DEFINITION", + "description": "Location adjacent to a field definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARGUMENT_DEFINITION", + "description": "Location adjacent to an argument definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Location adjacent to an interface definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Location adjacent to a union definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Location adjacent to an enum definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM_VALUE", + "description": "Location adjacent to an enum value definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Location adjacent to an input object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_FIELD_DEFINITION", + "description": "Location adjacent to an input object field definition.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + } + ], + "directives": [ + { + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": "Skipped when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ] + }, + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": "Included when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "defaultValue": "\"No longer supported\"" - } - ] - } - ] - } - }, - "extensions": { - "graphql-config": { - "source": "https://mc.commercetools.com/api/graphql", - "timestamp": "Mon Nov 11 2019 13:53:20 GMT+0100 (Central European Standard Time)" - } + } + }, + "defaultValue": null + } + ] + }, + { + "name": "deprecated", + "description": "Marks an element of a GraphQL schema as no longer supported.", + "locations": [ + "FIELD_DEFINITION", + "ENUM_VALUE" + ], + "args": [ + { + "name": "reason", + "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"No longer supported\"" + } + ] + } + ] } } \ No newline at end of file diff --git a/schemas/settings.json b/schemas/settings.json index ecd81403b1..ab27317c17 100644 --- a/schemas/settings.json +++ b/schemas/settings.json @@ -1,718 +1,426 @@ { - "data": { - "__schema": { - "queryType": { - "name": "Query" - }, - "mutationType": { - "name": "Mutation" - }, - "subscriptionType": null, - "types": [ - { - "kind": "OBJECT", - "name": "Query", - "description": "", - "fields": [ - { - "name": "projectExtension", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizationExtension", - "description": "", - "args": [ - { - "name": "organizationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ordersListViews", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": { + "name": "Mutation" + }, + "subscriptionType": null, + "types": [ + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "projectExtension", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allProjectExtensions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "OrdersListView", + "name": "ProjectExtension", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ordersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrdersListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activeOrdersListView", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "OrdersListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pimSearchListViews", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "allCustomApplicationOAuthScopes", + "description": null, + "args": [ + { + "name": "applicationId", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PimSearchListView", + "kind": "SCALAR", + "name": "ID", "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pimSearchListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PimSearchListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activePimSearchListView", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "PimSearchListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productTypeAttributesViews", - "description": "", - "args": [ - { - "name": "productTypeId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isVariant", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ProductTypeAttributesView", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productTypeAttributesView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductTypeAttributesView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activeProductTypeAttributesView", - "description": "", - "args": [ - { - "name": "productTypeId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isVariant", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductTypeAttributesView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ruleBuilderQuickSelectionValues", - "description": "", - "args": [ - { - "name": "ruleBuilderType", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "RuleBuilderType", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "RuleBuilderQuickSelectionValues", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "variantPricesListViews", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "VariantPricesListView", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customersListViews", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + } + }, + "isDeprecated": true, + "deprecationReason": "Experimental feature - For internal usage only" + }, + { + "name": "organizationExtension", + "description": null, + "args": [ + { + "name": "organizationId", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomersListView", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "customersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CustomersListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activeCustomersListView", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CustomersListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cartDiscountsListView", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CartDiscountsListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productDiscountsListView", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ProductDiscountsListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "discountCodesListView", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "DiscountCodesListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProjectExtension", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "globalOrganizationExtension", + "description": null, + "args": [ + { + "name": "organizationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationExtension", + "ofType": null + }, + "isDeprecated": true, + "deprecationReason": "Experimental feature - For internal usage only" + }, + { + "name": "ordersListViews", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "OrdersListView", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ordersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrdersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeOrdersListView", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "OrdersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pimSearchListViews", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PimSearchListView", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "applications", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "ApplicationExtensionOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pimSearchListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "after", - "description": "", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PimSearchListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activePimSearchListView", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "PimSearchListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productTypeAttributesViews", + "description": null, + "args": [ + { + "name": "productTypeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "before", - "description": "", - "type": { + "defaultValue": null + }, + { + "name": "isVariant", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "first", - "description": "", - "type": { + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductTypeAttributesView", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productTypeAttributesView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductTypeAttributesView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeProductTypeAttributesView", + "description": null, + "args": [ + { + "name": "productTypeId", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ApplicationExtension", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imageRegex", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ImageRegex", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "orderStatesVisibility", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "isVariant", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OrderStatesVisibility", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductTypeAttributesView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "variantPricesListViews", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "VariantPricesListView", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "categoryRecommendationSettings", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "CategoryRecommendationSettings", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "DateTime", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionWhereInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customersListViews", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { + "kind": "OBJECT", + "name": "CustomersListView", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "customersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { @@ -720,17 +428,125 @@ "name": "ID", "ofType": null } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "", - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeCustomersListView", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CustomersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ruleBuilderQuickSelectionValues", + "description": null, + "args": [ + { + "name": "ruleBuilderType", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RuleBuilderType", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "RuleBuilderQuickSelectionValues", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cartDiscountsListView", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CartDiscountsListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productDiscountsListView", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProductDiscountsListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "discountCodesListView", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "DiscountCodesListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dashboardViews", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { + "kind": "OBJECT", + "name": "DashboardView", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "dashboardView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { "kind": "NON_NULL", "name": null, "ofType": { @@ -738,3717 +554,1252 @@ "name": "ID", "ofType": null } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "", - "type": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DashboardView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activeDashboardView", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "DashboardView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectExtension", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "ID", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_lte", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_gt", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_gte", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "applications", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionWhereInput", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "ApplicationExtensionOrderByInput", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "", - "type": { - "kind": "LIST", + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "OBJECT", + "name": "ApplicationExtension", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "imageRegex", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ImageRegex", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "orderStatesVisibility", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "ENUM", + "name": "OrderStatesVisibility", "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "categoryRecommendationSettings", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "CategoryRecommendationSettings", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ID", + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "DateTime", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isActive", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "isActive_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "description_not_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "description_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "description_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isActive", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "isActive_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "url_not_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "name_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "url_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "url_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "navbarMenu", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "NavbarMenuWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "AND", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "name_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "description_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "description_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "description_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NavbarMenuWhereInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "url_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "url_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "navbarMenu", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NavbarMenuWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionWhereInput", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "key_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "key_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "uriPath_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "uriPath_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labelAllLocales_every", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labelAllLocales_some", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labelAllLocales_none", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "featureToggle_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "featureToggle_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "icon_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "icon_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "icon_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submenu_every", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "NavbarSubmenuWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submenu_some", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "NavbarSubmenuWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "submenu_none", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "NavbarSubmenuWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "AND", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NavbarMenuWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NavbarMenuWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NavbarMenuWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "locale_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "locale_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "value_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "value_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "AND", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "NOT", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NavbarSubmenuWhereInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "key_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "key_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "uriPath_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "uriPath_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "uriPath_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labelAllLocales_every", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labelAllLocales_some", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "labelAllLocales_none", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "featureToggle_not_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "featureToggle_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_not_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_not_starts_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "featureToggle_not_ends_with", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "AND", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NavbarSubmenuWhereInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionWhereInput", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "OR", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NavbarSubmenuWhereInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionWhereInput", + "ofType": null } - }, - "defaultValue": null + } }, - { - "name": "NOT", - "description": "", - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NavbarMenuWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "NavbarSubmenuWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ApplicationExtensionOrderByInput", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isActive_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isActive_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ApplicationExtension", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -4456,15 +1807,137 @@ "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -4472,15 +1945,17 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -4488,142 +1963,347 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isActive", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "navbarMenu", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "NavbarMenu", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NavbarMenu", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "key_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "key_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "uriPath_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -4631,15 +2311,167 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uriPath", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "uriPath_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labelAllLocales_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labelAllLocales_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labelAllLocales_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -4647,142 +2479,173 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelAllLocales", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "LocalizedFieldOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "featureToggle_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedField", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "featureToggle", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "featureToggle_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OAuthScope", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "icon", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "icon_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -4790,188 +2653,232 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submenu", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "NavbarSubmenuWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "NavbarSubmenuOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "icon_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submenu_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NavbarSubmenuWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submenu_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NavbarSubmenuWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "submenu_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NavbarSubmenuWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NavbarMenuWhereInput", + "ofType": null } - ], - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NavbarSubmenu", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "NavbarMenuWhereInput", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LocalizedFieldOrderByInput", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LocalizedField", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NavbarMenuWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -4979,31 +2886,155 @@ "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5011,338 +3042,347 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locale", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OAuthScope", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ManageProducts", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewProducts", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageCategories", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewCategories", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageCustomers", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewCustomers", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageCustomerGroups", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewCustomerGroups", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageOrders", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewOrders", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageProductDiscounts", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewProductDiscounts", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageCartDiscounts", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewCartDiscounts", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageDiscountCodes", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewDiscountCodes", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageProjectSettings", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewProjectSettings", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageProductTypes", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewProductTypes", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageDeveloperSettings", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ViewDeveloperSettings", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ManageProject", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "NavbarSubmenuOrderByInput", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uriPath_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uriPath_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "featureToggle_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "featureToggle_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NavbarSubmenu", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "locale_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "locale_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5350,15 +3390,17 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uriPath", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "value_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5366,153 +3408,202 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "labelAllLocales", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "LocalizedFieldOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "value_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "value_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null } - ], - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedField", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "featureToggle", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "permissions", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OAuthScope", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ImageRegex", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "NavbarSubmenuWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5520,31 +3611,155 @@ "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5552,66 +3767,95 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "small", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ImageRegexOptions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "thumb", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "ImageRegexOptions", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ImageRegexOptions", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5619,15 +3863,17 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5635,15 +3881,77 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "flag", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5651,15 +3959,17 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "search", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "key_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5667,15 +3977,137 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "replace", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "key_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -5683,722 +4115,2682 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OrderStatesVisibility", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "HidePaymentState", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HideShipmentState", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HideOrderState", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CategoryRecommendationSettings", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "uriPath_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "uriPath_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "uriPath_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labelAllLocales_every", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labelAllLocales_some", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "labelAllLocales_none", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "featureToggle_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchProperty", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "featureToggle_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "featureToggle_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "CategoryRecommendationSearchProperty", + "kind": "INPUT_OBJECT", + "name": "NavbarSubmenuWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NavbarSubmenuWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "NavbarSubmenuWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "ApplicationExtensionOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ApplicationExtension", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "navbarMenu", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "NavbarMenu", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oAuthScopes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NavbarMenu", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "attributeName", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uriPath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LocalizedFieldOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "CategoryRecommendationSearchProperty", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Attribute", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MachineLearning", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ProductType", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrganizationExtension", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "LocalizedField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "featureToggle", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permissions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OAuthScope", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "icon", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "submenu", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "NavbarSubmenuWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "NavbarSubmenuOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "NavbarSubmenu", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LocalizedFieldOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LocalizedField", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "value", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "OAuthScope", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ManageProducts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewProducts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageCategories", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewCategories", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageCustomers", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewCustomers", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageCustomerGroups", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewCustomerGroups", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageOrders", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewOrders", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageProductDiscounts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewProductDiscounts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageCartDiscounts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewCartDiscounts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageDiscountCodes", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewDiscountCodes", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageProjectSettings", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewProjectSettings", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageProductTypes", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewProductTypes", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageDeveloperSettings", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ViewDeveloperSettings", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ManageProject", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "NavbarSubmenuOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uriPath_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uriPath_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "featureToggle_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "featureToggle_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "NavbarSubmenu", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "uriPath", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "labelAllLocales", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LocalizedFieldOrderByInput", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "skip", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "after", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizationId", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "before", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "oidcSsoConfig", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "OidcSsoConfig", - "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OidcSsoConfig", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "first", + "description": null, + "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "LocalizedField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "featureToggle", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "permissions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OAuthScope", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "isActive", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageRegex", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "authorityUrl", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - { - "name": "clientId", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "small", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ImageRegexOptions", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "thumb", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ImageRegexOptions", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ImageRegexOptions", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - { - "name": "clientSecret", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "flag", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "teamIdForNewUsers", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "search", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "replace", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "OrderStatesVisibility", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "HidePaymentState", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "HideShipmentState", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "HideOrderState", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CategoryRecommendationSettings", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchProperty", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CategoryRecommendationSearchProperty", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "attributeName", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "CategoryRecommendationSearchProperty", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Attribute", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MachineLearning", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ProductType", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrganizationExtension", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "organizationId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "oidcSsoConfig", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "OidcSsoConfig", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OidcSsoConfig", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "authorityUrl", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "clientSecret", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "teamIdForNewUsers", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logoutUrl", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "OrdersListView", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "logoutUrl", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrdersListView", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LocalizedFieldOrderByInput", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "skip", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "after", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "before", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "LocalizedField", "ofType": null } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "search", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "table", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Table", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Sort", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filters", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FilterValuesWhereInput", + "ofType": null + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FilterValuesOrderByInput", + "ofType": null }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "LocalizedFieldOrderByInput", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedField", - "ofType": null - } + "kind": "OBJECT", + "name": "FilterValues", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "isActive", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Table", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "search", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "table", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Table", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Sort", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "FilterValuesWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "FilterValuesOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "visibleColumns", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "FilterValues", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Table", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Sort", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "order", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrder", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "SortOrder", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "Asc", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Desc", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FilterValuesWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -6406,31 +6798,155 @@ "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -6438,66 +6954,113 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "visibleColumns", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Sort", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -6505,31 +7068,95 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "target_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -6537,259 +7164,1033 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "target_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "FilterType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_not", + "description": null, + "type": { + "kind": "ENUM", + "name": "FilterType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "ENUM", - "name": "SortOrder", + "name": "FilterType", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SortOrder", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Asc", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Desc", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FilterValuesWhereInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "type_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "ENUM", + "name": "FilterType", + "ofType": null } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": "", - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "FilterValuesWhereInput", + "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FilterValuesWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FilterValuesWhereInput", + "ofType": null + } + } }, - { - "name": "id_lt", - "description": "", - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "FilterType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "EqualTo", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "In", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LessThan", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Missing", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MissingIn", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MoreThan", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Range", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CustomField", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "FilterValuesOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "target_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "target_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "json_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "json_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FilterValues", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "ID", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_lte", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_gt", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_gte", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "target", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FilterType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "json", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Json", + "description": "", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PimSearchListView", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "ID", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_contains", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_not_contains", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_starts_with", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LocalizedFieldOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LocalizedField", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "search", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "table", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Table", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Sort", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filters", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FilterValuesWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FilterValuesOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FilterValues", + "ofType": null + } + } }, - { - "name": "id_not_starts_with", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductTypeAttributesView", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "ID", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_ends_with", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "id_not_ends_with", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "createdAt", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "createdAt_not", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "createdAt_in", - "description": "", - "type": { - "kind": "LIST", + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LocalizedFieldOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "OBJECT", + "name": "LocalizedField", + "ofType": null } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productTypeId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "createdAt_not_in", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isVariant", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pinnedAttributes", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -6797,95 +8198,167 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "createdAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAt_lte", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "searchTerm", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "existence", + "description": null, + "args": [], + "type": { + "kind": "ENUM", + "name": "Existence", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Existence", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "All", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Filled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "Empty", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "VariantPricesListView", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "createdAt_gt", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "createdAt_gte", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "updatedAt", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "updatedAt_not", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "updatedAt_not_in", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "visibleColumns", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -6893,930 +8366,1445 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "updatedAt_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "updatedAt_lte", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CustomersListView", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "updatedAt_gt", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "updatedAt_gte", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "target", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "target_not", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "target_in", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LocalizedFieldOrderByInput", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "target_not_in", - "description": "", - "type": { - "kind": "LIST", + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "LocalizedField", + "ofType": null } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "search", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "table", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Table", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Sort", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filters", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FilterValuesWhereInput", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "target_lt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FilterValuesOrderByInput", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "target_lte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "target_gt", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "after", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "target_gte", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "before", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "target_contains", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FilterValues", + "ofType": null + } + } }, - { - "name": "target_not_contains", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "RuleBuilderType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "ProductDiscount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CartDiscount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "CartTargetDiscount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "RuleBuilderQuickSelectionValues", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "target_starts_with", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "target_not_starts_with", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "target_ends_with", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "target_not_ends_with", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "type", - "description": "", - "type": { - "kind": "ENUM", - "name": "FilterType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ruleBuilderType", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "ENUM", - "name": "FilterType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": "", - "type": { + "name": "RuleBuilderType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "functions", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "FilterType", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "predicates", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "FilterType", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "CartDiscountsListView", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "AND", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "visibleColumns", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FilterValuesWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "defaultValue": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProductDiscountsListView", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - { - "name": "OR", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "visibleColumns", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FilterValuesWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "NOT", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DiscountCodesListView", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "visibleColumns", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FilterValuesWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "DashboardView", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userId", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectKey", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameAllLocales", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldWhereInput", + "ofType": null + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FilterType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "EqualTo", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "In", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LessThan", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Missing", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MissingIn", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MoreThan", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Range", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CustomField", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FilterValuesOrderByInput", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "id_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "json_ASC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "json_DESC", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FilterValues", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LocalizedFieldOrderByInput", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "skip", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "after", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "before", + "description": null, + "type": { "kind": "SCALAR", "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": "", - "args": [], - "type": { + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "FilterType", + "kind": "OBJECT", + "name": "LocalizedField", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "json", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isActive", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "layout", + "description": null, + "args": [ + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LayoutCardWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LayoutCardOrderByInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "skip", + "description": null, + "type": { "kind": "SCALAR", - "name": "Json", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Json", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PimSearchListView", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "after", + "description": null, + "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "before", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + { + "name": "first", + "description": null, + "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null - } + }, + "defaultValue": null }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": "", - "args": [], - "type": { + { + "name": "last", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "LayoutCard", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LayoutCardWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "LocalizedFieldOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedField", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isActive", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "search", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "table", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Table", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Sort", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "FilterValuesWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "FilterValuesOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FilterValues", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductTypeAttributesView", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -7824,15 +9812,17 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -7840,454 +9830,873 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "ENUM", + "name": "MetricCardType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_not", + "description": null, + "type": { + "kind": "ENUM", + "name": "MetricCardType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricCardType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "key_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricCardType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "height", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "height_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "height_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "height_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "LocalizedFieldOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "height_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "height_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "height_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "height_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "width", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "width_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "width_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "width_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedField", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "productTypeId", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "width_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "width_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "width_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "width_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minHeight", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minHeight_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minHeight_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isActive", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "minHeight_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isVariant", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pinnedAttributes", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "minHeight_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minHeight_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minHeight_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minHeight_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minWidth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minWidth_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minWidth_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchTerm", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "existence", - "description": "", - "args": [], - "type": { - "kind": "ENUM", - "name": "Existence", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Existence", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "All", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Filled", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Empty", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "RuleBuilderType", - "description": "", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "ProductDiscount", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CartDiscount", - "description": "", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "CartTargetDiscount", - "description": "", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RuleBuilderQuickSelectionValues", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "minWidth_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "minWidth_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minWidth_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minWidth_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minWidth_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "xPosition", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "xPosition_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "xPosition_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "xPosition_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "xPosition_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "xPosition_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "xPosition_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "xPosition_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "yPosition", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "yPosition_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "yPosition_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "yPosition_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ruleBuilderType", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "yPosition_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "yPosition_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "yPosition_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "yPosition_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "topProductsConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TopProductsConfigurationWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "salesPerformanceConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SalesPerformanceConfigurationWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "totalSalesConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TotalSalesConfigurationWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "averageOrderValueConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AverageOrderValueConfigurationWhereInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "RuleBuilderType", + "kind": "INPUT_OBJECT", + "name": "LayoutCardWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "functions", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "LayoutCardWhereInput", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LayoutCardWhereInput", + "ofType": null + } + } }, - { - "name": "predicates", - "description": "", - "args": [], - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "MetricCardType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SALES_PERFORMANCE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TOTAL_SALES", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "AVERAGE_ORDER_VALUE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "RESOURCES_NUMBERS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PRODUCT_TOP_VARIANTS", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopProductsConfigurationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "VariantPricesListView", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -8295,15 +10704,137 @@ "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -8311,15 +10842,17 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -8327,419 +10860,593 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "visibleColumns", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bestSellingLimit", + "description": null, + "type": { + "kind": "ENUM", + "name": "BestSellingLimit", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bestSellingLimit_not", + "description": null, + "type": { + "kind": "ENUM", + "name": "BestSellingLimit", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "bestSellingLimit_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "ENUM", + "name": "BestSellingLimit", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CustomersListView", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "bestSellingLimit_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "BestSellingLimit", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "TopProductsConfigurationWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "TopProductsConfigurationWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "TopProductsConfigurationWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "BestSellingLimit", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "FIVE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "TEN", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIFTEEN", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SalesPerformanceConfigurationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameAllLocales", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "LocalizedFieldOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LocalizedField", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isActive", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "search", - "description": "", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "table", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Table", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": "", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Sort", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filters", - "description": "", - "args": [ - { - "name": "where", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "FilterValuesWhereInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderBy", - "description": "", - "type": { - "kind": "ENUM", - "name": "FilterValuesOrderByInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "skip", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "after", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "before", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "first", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "last", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - ], - "type": { - "kind": "LIST", + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FilterValues", - "ofType": null - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CartDiscountsListView", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -8747,114 +11454,414 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "showPreviousTimeframe", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "showPreviousTimeframe_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "SalesPerformanceConfigurationWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SalesPerformanceConfigurationWhereInput", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SalesPerformanceConfigurationWhereInput", + "ofType": null + } + } }, - { - "name": "userId", - "description": "", - "args": [], - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TotalSalesConfigurationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "visibleColumns", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ProductDiscountsListView", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -8862,15 +11869,17 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -8878,15 +11887,77 @@ "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -8894,15 +11965,17 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "productId_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -8910,2751 +11983,3662 @@ "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "visibleColumns", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "productId_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "productId_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "TotalSalesConfigurationWhereInput", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DiscountCodesListView", - "description": "", - "fields": [ - { - "name": "id", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "TotalSalesConfigurationWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAt", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "INPUT_OBJECT", + "name": "TotalSalesConfigurationWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "updatedAt", - "description": "", - "args": [], - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AverageOrderValueConfigurationWhereInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userId", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectKey", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "visibleColumns", - "description": "", - "args": [], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": "", - "fields": [ - { - "name": "createProjectExtensionApplication", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateProjectExtensionApplication", - "description": "", - "args": [ - { - "name": "applicationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteProjectExtensionApplication", - "description": "", - "args": [ - { - "name": "applicationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activateProjectExtensionApplication", - "description": "", - "args": [ - { - "name": "applicationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deactivateProjectExtensionApplication", - "description": "", - "args": [ - { - "name": "applicationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "setProjectExtensionImageRegex", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "ImageRegexDataInput", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "setProjectExtensionCategoryRecommendation", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "CategoryRecommendationSettingsDataInput", - "ofType": null - }, - "defaultValue": null + "kind": "SCALAR", + "name": "DateTime", + "ofType": null } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "setProjectExtensionOrderStatesVisibility", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OrderStatesVisibility", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProjectExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "setOrganizationExtensionOidcSsoConfig", - "description": "", - "args": [ - { - "name": "organizationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OidcSsoConfigDataInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activateOrganizationExtensionOidcSsoConfig", - "description": "", - "args": [ - { - "name": "organizationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deactivateOrganizationExtensionOidcSsoConfig", - "description": "", - "args": [ - { - "name": "organizationId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationExtension", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createOrdersListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrdersListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "createdAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "OrdersListView", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateOrdersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrdersListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrdersListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteOrdersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrdersListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activateOrdersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrdersListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deactivateOrdersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrdersListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createPimSearchListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PimSearchListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PimSearchListView", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updatePimSearchListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PimSearchListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PimSearchListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deletePimSearchListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PimSearchListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activatePimSearchListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PimSearchListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deactivatePimSearchListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "PimSearchListView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createProductTypeAttributesView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductTypeAttributesViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "updatedAt_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "updatedAt_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "showPreviousTimeframe", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "showPreviousTimeframe_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "AND", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProductTypeAttributesView", + "kind": "INPUT_OBJECT", + "name": "AverageOrderValueConfigurationWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateProductTypeAttributesView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductTypeAttributesViewUpdateInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "OR", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ProductTypeAttributesView", + "kind": "INPUT_OBJECT", + "name": "AverageOrderValueConfigurationWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteProductTypeAttributesView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductTypeAttributesView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activateProductTypeAttributesView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "productTypeId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "isVariant", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductTypeAttributesView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deactivateProductTypeAttributesView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductTypeAttributesView", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCustomersListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomersListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "NOT", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "CustomersListView", + "kind": "INPUT_OBJECT", + "name": "AverageOrderValueConfigurationWhereInput", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateCustomersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CustomersListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CustomersListView", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LayoutCardOrderByInput", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minHeight_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minHeight_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minWidth_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minWidth_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "xPosition_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "xPosition_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "yPosition_ASC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "yPosition_DESC", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LayoutCard", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateVariantPricesListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "variantPricesListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "VariantPricesListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createVariantPricesListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "variantPricesListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "VariantPricesListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteCustomersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CustomersListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricCardType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "height", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minHeight", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "minWidth", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "xPosition", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "yPosition", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "topProductsConfiguration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TopProductsConfiguration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "salesPerformanceConfiguration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "SalesPerformanceConfiguration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalSalesConfiguration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "TotalSalesConfiguration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "averageOrderValueConfiguration", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "AverageOrderValueConfiguration", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TopProductsConfiguration", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "activateCustomersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CustomersListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deactivateCustomersListView", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrdersListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateRuleBuilderQuickSelectionValues", - "description": "", - "args": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "RuleBuilderQuickSelectionInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "RuleBuilderQuickSelectionValues", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bestSellingLimit", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BestSellingLimit", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "SalesPerformanceConfiguration", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCartDiscountsListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CartDiscountsListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CartDiscountsListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showPreviousTimeframe", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateCartDiscountsListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CartDiscountsListViewInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CartDiscountsListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TotalSalesConfiguration", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createProductDiscountsListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductDiscountsListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductDiscountsListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateProductDiscountsListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ProductDiscountsListViewInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ProductDiscountsListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createDiscountCodesListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DiscountCodesListViewInput", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DiscountCodesListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "productId", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "AverageOrderValueConfiguration", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDiscountCodesListView", - "description": "", - "args": [ - { - "name": "data", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DiscountCodesListViewInput", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "id", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DiscountCodesListView", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionDataInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "name", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + } }, - { - "name": "description", - "description": "", - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatedAt", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "url", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "showPreviousTimeframe", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - { - "name": "navbarMenu", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionNavbarMenuDataInput", - "ofType": null - } + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, + "fields": [ + { + "name": "createProjectExtensionApplication", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionDataInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProjectExtensionApplication", + "description": null, + "args": [ + { + "name": "applicationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionNavbarMenuDataInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "key", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionDataInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteProjectExtensionApplication", + "description": null, + "args": [ + { + "name": "applicationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activateProjectExtensionApplication", + "description": null, + "args": [ + { + "name": "applicationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivateProjectExtensionApplication", + "description": null, + "args": [ + { + "name": "applicationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setProjectExtensionImageRegex", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageRegexDataInput", "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "uriPath", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setProjectExtensionCategoryRecommendation", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CategoryRecommendationSettingsDataInput", "ofType": null - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setProjectExtensionOrderStatesVisibility", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrderStatesVisibility", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProjectExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "setOrganizationExtensionOidcSsoConfig", + "description": null, + "args": [ + { + "name": "organizationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "featureToggle", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OidcSsoConfigDataInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activateOrganizationExtensionOidcSsoConfig", + "description": null, + "args": [ + { + "name": "organizationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivateOrganizationExtensionOidcSsoConfig", + "description": null, + "args": [ + { + "name": "organizationId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrganizationExtension", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createOrdersListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrdersListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "OrdersListView", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateOrdersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "icon", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "OrdersListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrdersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteOrdersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrdersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activateOrdersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrdersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivateOrdersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrdersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createPimSearchListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PimSearchListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PimSearchListView", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updatePimSearchListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "permissions", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PimSearchListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PimSearchListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deletePimSearchListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PimSearchListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activatePimSearchListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OAuthScope", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - } - }, - "defaultValue": null - }, - { - "name": "labelAllLocales", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PimSearchListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivatePimSearchListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldDataInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - } - }, - "defaultValue": null - }, - { - "name": "submenu", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PimSearchListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createProductTypeAttributesView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionNavbarSubmenuDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ProductTypeAttributesViewInput", + "ofType": null } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldDataInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "locale", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "value", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ApplicationExtensionNavbarSubmenuDataInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "key", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "uriPath", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "featureToggle", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductTypeAttributesView", "ofType": null - }, - "defaultValue": null - }, - { - "name": "permissions", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProductTypeAttributesView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OAuthScope", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "labelAllLocales", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldDataInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ProductTypeAttributesViewUpdateInput", + "ofType": null } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImageRegexDataInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "small", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "ImageRegexOptionsInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "thumb", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "ImageRegexOptionsInput", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImageRegexOptionsInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "flag", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "search", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "replace", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CategoryRecommendationSettingsDataInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "searchProperty", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CategoryRecommendationSearchProperty", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "attributeName", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OidcSsoConfigDataInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "authorityUrl", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "clientId", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "clientSecret", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProductTypeAttributesView", "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteProductTypeAttributesView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductTypeAttributesView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activateProductTypeAttributesView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "teamIdForNewUsers", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "logoutUrl", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "productTypeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OrdersListViewInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "search", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "isVariant", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductTypeAttributesView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivateProductTypeAttributesView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductTypeAttributesView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateVariantPricesListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "nameAllLocales", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "variantPricesListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "VariantPricesListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createVariantPricesListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "variantPricesListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "VariantPricesListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createCustomersListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CustomersListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CustomersListView", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateCustomersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - } - }, - "defaultValue": null - }, - { - "name": "table", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "OrdersListViewTableInput", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SortCreateInput", - "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "filters", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FilterValuesCreateInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CustomersListViewInput", + "ofType": null } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldCreateInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "locale", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "value", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OrdersListViewTableInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "visibleColumns", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteCustomersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SortCreateInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "key", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "order", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SortOrder", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FilterValuesCreateInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "id", - "description": "", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "target", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activateCustomersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CustomersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivateCustomersListView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "OrdersListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateRuleBuilderQuickSelectionValues", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null - } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "type", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FilterType", - "ofType": null - } + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "RuleBuilderQuickSelectionInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "RuleBuilderQuickSelectionValues", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createCartDiscountsListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartDiscountsListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CartDiscountsListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateCartDiscountsListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CartDiscountsListViewInput", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "json", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Json", - "ofType": null - } + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "CartDiscountsListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createProductDiscountsListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProductDiscountsListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductDiscountsListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProductDiscountsListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ProductDiscountsListViewInput", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PimSearchListViewInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "search", - "description": "", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "ProductDiscountsListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createDiscountCodesListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DiscountCodesListViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DiscountCodesListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateDiscountCodesListView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DiscountCodesListViewInput", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "nameAllLocales", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DiscountCodesListView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createDashboardView", + "description": null, + "args": [ + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DashboardViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DashboardView", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateDashboardView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null }, - "defaultValue": null - }, - { - "name": "table", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "PimSearchListViewTableInput", + { + "name": "data", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "DashboardViewInput", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DashboardView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteDashboardView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DashboardView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "activateDashboardView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DashboardView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deactivateDashboardView", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "DashboardView", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "name", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - }, - { - "name": "sort", - "description": "", - "type": { + } + }, + "defaultValue": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "url", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "oAuthScopes", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SortCreateInput", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "navbarMenu", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionNavbarMenuDataInput", + "ofType": null + } }, - { - "name": "filters", - "description": "", - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionNavbarMenuDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "uriPath", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "featureToggle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "icon", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "permissions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FilterValuesCreateInput", - "ofType": null - } + "kind": "ENUM", + "name": "OAuthScope", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PimSearchListViewTableInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "visibleColumns", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "labelAllLocales", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldDataInput", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductTypeAttributesViewInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "nameAllLocales", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "submenu", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldCreateInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionNavbarSubmenuDataInput", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "productTypeId", - "description": "", - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "locale", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ApplicationExtensionNavbarSubmenuDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "uriPath", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "featureToggle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "permissions", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OAuthScope", + "ofType": null + } } - }, - "defaultValue": null - }, - { - "name": "pinnedAttributes", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "labelAllLocales", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldDataInput", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "isVariant", - "description": "", - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageRegexDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "small", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageRegexOptionsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "thumb", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "ImageRegexOptionsInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ImageRegexOptionsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "flag", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "searchTerm", - "description": "", - "type": { + "defaultValue": null + }, + { + "name": "search", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "existence", - "description": "", - "type": { + "defaultValue": null + }, + { + "name": "replace", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CategoryRecommendationSettingsDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "searchProperty", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "ENUM", - "name": "Existence", + "name": "CategoryRecommendationSearchProperty", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "attributeName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OidcSsoConfigDataInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "authorityUrl", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductTypeAttributesViewUpdateInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "nameAllLocales", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "clientId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "clientSecret", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "teamIdForNewUsers", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "logoutUrl", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrdersListViewInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nameAllLocales", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldCreateInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldCreateInput", + "ofType": null } } - }, - "defaultValue": null - }, - { - "name": "isVariant", - "description": "", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pinnedAttributes", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "table", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "OrdersListViewTableInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SortCreateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "filters", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "FilterValuesCreateInput", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "searchTerm", - "description": "", - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "existence", - "description": "", - "type": { - "kind": "ENUM", - "name": "Existence", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomersListViewInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "search", - "description": "", - "type": { + "defaultValue": null + }, + { + "name": "value", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "defaultValue": null + } }, - { - "name": "nameAllLocales", - "description": "", - "type": { - "kind": "NON_NULL", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "OrdersListViewTableInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "visibleColumns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LocalizedFieldCreateInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } - }, - "defaultValue": null + } }, - { - "name": "table", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "CustomersListViewTableInput", + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SortCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null + } + }, + "defaultValue": null + }, + { + "name": "order", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SortOrder", + "ofType": null + } }, - { - "name": "sort", - "description": "", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SortCreateInput", - "ofType": null - } - }, - "defaultValue": null + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FilterValuesCreateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "target", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FilterType", + "ofType": null + } }, - { - "name": "filters", - "description": "", - "type": { - "kind": "NON_NULL", + "defaultValue": null + }, + { + "name": "json", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Json", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PimSearchListViewInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nameAllLocales", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FilterValuesCreateInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldCreateInput", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CustomersListViewTableInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "visibleColumns", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "table", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PimSearchListViewTableInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SortCreateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "filters", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "FilterValuesCreateInput", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "variantPricesListViewInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "visibleColumns", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PimSearchListViewTableInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "visibleColumns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RuleBuilderQuickSelectionInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "ruleBuilderType", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductTypeAttributesViewInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "nameAllLocales", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "ENUM", - "name": "RuleBuilderType", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldCreateInput", + "ofType": null + } } - }, - "defaultValue": null - }, - { - "name": "predicates", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "RuleBuilderQuickSelectCreatefunctionsInput", - "ofType": null - }, - "defaultValue": null + } }, - { - "name": "functions", - "description": "", - "type": { - "kind": "INPUT_OBJECT", - "name": "RuleBuilderQuickSelectCreatepredicatesInput", + "defaultValue": null + }, + { + "name": "productTypeId", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RuleBuilderQuickSelectCreatefunctionsInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "set", - "description": "", - "type": { + } + }, + "defaultValue": null + }, + { + "name": "pinnedAttributes", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -11666,24 +15650,90 @@ "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "RuleBuilderQuickSelectCreatepredicatesInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "set", - "description": "", - "type": { + } + }, + "defaultValue": null + }, + { + "name": "isVariant", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "searchTerm", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "existence", + "description": null, + "type": { + "kind": "ENUM", + "name": "Existence", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductTypeAttributesViewUpdateInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "nameAllLocales", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldCreateInput", + "ofType": null + } + } + } + }, + "defaultValue": null + }, + { + "name": "isVariant", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pinnedAttributes", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -11695,364 +15745,693 @@ "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CartDiscountsListViewInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "visibleColumns", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "searchTerm", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "existence", + "description": null, + "type": { + "kind": "ENUM", + "name": "Existence", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "variantPricesListViewInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "visibleColumns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ProductDiscountsListViewInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "visibleColumns", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomersListViewInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "search", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nameAllLocales", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldCreateInput", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DiscountCodesListViewInput", - "description": "", - "fields": null, - "inputFields": [ - { - "name": "visibleColumns", - "description": "", - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + }, + { + "name": "table", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "CustomersListViewTableInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SortCreateInput", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "filters", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "FilterValuesCreateInput", + "ofType": null } } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "fields": [ - { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CustomersListViewTableInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "visibleColumns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RuleBuilderQuickSelectionInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "ruleBuilderType", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "RuleBuilderType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "predicates", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RuleBuilderQuickSelectCreatefunctionsInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "functions", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "RuleBuilderQuickSelectCreatepredicatesInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RuleBuilderQuickSelectCreatefunctionsInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "set", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "directives", - "description": "A list of all directives supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "fields": [ - { - "name": "kind", - "description": null, - "args": [], - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "RuleBuilderQuickSelectCreatepredicatesInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "set", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "__TypeKind", + "kind": "SCALAR", + "name": "String", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "CartDiscountsListViewInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "visibleColumns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null - }, - "defaultValue": "false" + } } - ], - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProductDiscountsListViewInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "visibleColumns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Field", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DiscountCodesListViewInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "visibleColumns", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "String", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "DashboardViewInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "nameAllLocales", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "INPUT_OBJECT", + "name": "LocalizedFieldCreateInput", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false" - } - ], - "type": { + } + }, + "defaultValue": null + }, + { + "name": "layout", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", + "kind": "INPUT_OBJECT", + "name": "LayoutCardInput", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFields", - "description": null, - "args": [], - "type": { + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LayoutCardInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "key", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MetricCardType", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "height", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "width", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "minHeight", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "minWidth", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "xPosition", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "yPosition", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "topProductsConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TopProductsConfigurationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "salesPerformanceConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "SalesPerformanceConfigurationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "totalSalesConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TotalSalesConfigurationInput", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "averageOrderValueConfiguration", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "AverageOrderValueConfigurationInput", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TopProductsConfigurationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "bestSellingLimit", + "description": null, + "type": { + "kind": "ENUM", + "name": "BestSellingLimit", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "SalesPerformanceConfigurationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "showPreviousTimeframe", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TotalSalesConfigurationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "productId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "AverageOrderValueConfigurationInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "showPreviousTimeframe", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Schema", + "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", + "fields": [ + { + "name": "types", + "description": "A list of all types supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "LIST", "name": null, "ofType": { @@ -12060,153 +16439,169 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "__InputValue", + "name": "__Type", "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "queryType", + "description": "The type that query operations will be rooted at.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "OBJECT", "name": "__Type", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mutationType", + "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subscriptionType", + "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "directives", + "description": "A list of all directives supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Directive", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Type", + "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", + "fields": [ + { + "name": "kind", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "fields", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } + "kind": "OBJECT", + "name": "__Field", + "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "interfaces", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { @@ -12214,498 +16609,767 @@ "name": "__Type", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "possibleTypes", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "enumValues", + "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { + }, + "defaultValue": "false" + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__EnumValue", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "inputFields", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "__Type", + "name": "__InputValue", "ofType": null } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ofType", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "SCALAR", + "description": "Indicates this type is a scalar.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "LIST", + "description": "Indicates this type is a list. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "NON_NULL", + "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Field", + "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } } - }, - "isDeprecated": false, - "deprecationReason": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } }, - { - "name": "description", - "description": null, - "args": [], - "type": { + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__InputValue", + "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "defaultValue", + "description": "A GraphQL-formatted string representing the default value for this input value.", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__EnumValue", + "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Directive", - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "isDeprecated", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deprecationReason", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "__Directive", + "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", + "fields": [ + { + "name": "name", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locations", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "args", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null } } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - } - ], - "directives": [ - { - "name": "auth", - "description": "", - "locations": [ - "FIELD_DEFINITION" - ], - "args": [ - { - "name": "verifyAccessToProject", - "description": "", - "type": { + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "__DirectiveLocation", + "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "QUERY", + "description": "Location adjacent to a query operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MUTATION", + "description": "Location adjacent to a mutation operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SUBSCRIPTION", + "description": "Location adjacent to a subscription operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD", + "description": "Location adjacent to a field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_DEFINITION", + "description": "Location adjacent to a fragment definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_SPREAD", + "description": "Location adjacent to a fragment spread.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INLINE_FRAGMENT", + "description": "Location adjacent to an inline fragment.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VARIABLE_DEFINITION", + "description": "Location adjacent to a variable definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCHEMA", + "description": "Location adjacent to a schema definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCALAR", + "description": "Location adjacent to a scalar definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Location adjacent to an object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_DEFINITION", + "description": "Location adjacent to a field definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARGUMENT_DEFINITION", + "description": "Location adjacent to an argument definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Location adjacent to an interface definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Location adjacent to a union definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Location adjacent to an enum definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM_VALUE", + "description": "Location adjacent to an enum value definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_OBJECT", + "description": "Location adjacent to an input object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_FIELD_DEFINITION", + "description": "Location adjacent to an input object field definition.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "AuthPermission", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "loggedInUser", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "accessToProject", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manageMyOrganizations", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "manageProjectSettings", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewProjectSettings", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewCustomers", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewSomeDiscounts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewProductDiscounts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewCartDiscounts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewDiscountCodes", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewOrders", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "viewProducts", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + } + ], + "directives": [ + { + "name": "skip", + "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": "Skipped when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Boolean", "ofType": null - }, - "defaultValue": "true" + } }, - { - "name": "canManageOrganization", - "description": "", - "type": { + "defaultValue": null + } + ] + }, + { + "name": "include", + "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": "Included when true.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Boolean", "ofType": null - }, - "defaultValue": "false" - } - ] - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Skipped when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "deprecated", - "description": "Marks an element of a GraphQL schema as no longer supported.", - "locations": [ - "FIELD_DEFINITION", - "ENUM_VALUE" - ], - "args": [ - { - "name": "reason", - "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": "\"No longer supported\"" - } - ] - } - ] - } - }, - "extensions": { - "graphql-config": { - "source": "https://mc-api.europe-west1.gcp.commercetools.com/graphql", - "timestamp": "Tue Dec 31 2019 16:44:28 GMT+0100 (Central European Standard Time)" - } + } + }, + "defaultValue": null + } + ] + }, + { + "name": "deprecated", + "description": "Marks an element of a GraphQL schema as no longer supported.", + "locations": [ + "FIELD_DEFINITION", + "ENUM_VALUE" + ], + "args": [ + { + "name": "reason", + "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax (as specified by [CommonMark](https://commonmark.org/).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"No longer supported\"" + } + ] + } + ] } } \ No newline at end of file diff --git a/scripts/graphql-cli.sh b/scripts/graphql-cli.sh new file mode 100755 index 0000000000..ae2e4c324b --- /dev/null +++ b/scripts/graphql-cli.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +set -e + +# Load the dotenv variables into the shell context. +export $(egrep -v '^#' .env | xargs) + +# Proxy the command options to the `graphql-cli` script. +yarn graphql "$@" --overwrite diff --git a/yarn.lock b/yarn.lock index 266b72ef16..596a7755d6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2700,6 +2700,14 @@ intl-messageformat-parser "^5.4.2" typescript "^3.8" +"@graphql-cli/codegen@1.17.8": + version "1.17.8" + resolved "https://registry.yarnpkg.com/@graphql-cli/codegen/-/codegen-1.17.8.tgz#9e0513d21c5729cac739702dedb408ec77392602" + integrity sha512-a7X8bz33mb8TMLZm0MWRzHmGP9BSZZ/RpnmnwcxyiXoby/JZx3U8j2appqXvWknTd2VdpwQFXAFeinuocARvjg== + dependencies: + "@graphql-cli/common" "4.0.0" + "@graphql-codegen/cli" "1.17.8" + "@graphql-cli/common@4.0.0": version "4.0.0" resolved "https://registry.yarnpkg.com/@graphql-cli/common/-/common-4.0.0.tgz#a14d382b1e744b784eebde4cb98fadd30fd5e3b2" @@ -2708,6 +2716,16 @@ "@graphql-tools/load" "^6.0.0" tslib "^2.0.0" +"@graphql-cli/coverage@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@graphql-cli/coverage/-/coverage-2.1.0.tgz#181f2e74c5b8e7d515efd7192aed7a5537dcd3dc" + integrity sha512-s+bQJHo9lYlTRVEmOpznq/ylIJIKxH5sDtLbASgzNACCbmjkmDGzv3w3RSw76eBQP74TNgxspH7CxL/bqLoFlA== + dependencies: + "@graphql-cli/common" "4.0.0" + "@graphql-inspector/coverage-command" "2.1.0" + "@graphql-inspector/graphql-cli-common" "2.1.0" + tslib "^2.0.0" + "@graphql-cli/init@4.0.0": version "4.0.0" resolved "https://registry.yarnpkg.com/@graphql-cli/init/-/init-4.0.0.tgz#63f0163a0480c791c55074504b53ce3aa69f6cf2" @@ -2731,6 +2749,29 @@ tmp "0.2.1" tslib "^2.0.0" +"@graphql-cli/loaders@4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@graphql-cli/loaders/-/loaders-4.0.0.tgz#1e2fe548e35ec543c2aa13c683703408b0b1c7c9" + integrity sha512-hZ2DNCfjqZCCZrV4HqfgKwHWRCnh0TEXi9rkjvV0nMs4khfAzQFhAP+Y7nQMxAk7aKPY7kEq6X/tEYr8B68SQA== + dependencies: + "@graphql-tools/apollo-engine-loader" "^6.0.0" + "@graphql-tools/code-file-loader" "^6.0.0" + "@graphql-tools/git-loader" "^6.0.0" + "@graphql-tools/github-loader" "^6.0.0" + "@graphql-tools/prisma-loader" "^6.0.0" + "@graphql-tools/url-loader" "^6.0.0" + "@graphql-tools/utils" "^6.0.0" + +"@graphql-cli/validate@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@graphql-cli/validate/-/validate-2.1.0.tgz#8f1d0c500828b03a3471884bb7973161496ddd48" + integrity sha512-Tt1weURI+vUInnEoRZ2g4n/0yuyElYRwip5xYpH8v9TDdI3Cj96l+AxLqVWIJYJ5VIFqxJ4b7yAlXuEOdS1lSw== + dependencies: + "@graphql-cli/common" "4.0.0" + "@graphql-cli/loaders" "4.0.0" + "@graphql-inspector/validate-command" "2.1.0" + tslib "^2.0.0" + "@graphql-codegen/add@1.17.7": version "1.17.7" resolved "https://registry.yarnpkg.com/@graphql-codegen/add/-/add-1.17.7.tgz#ca070179400350909756ebd0fb10dc29ae235ccd" @@ -2798,6 +2839,14 @@ "@graphql-tools/utils" "^6.0.18" tslib "~2.0.0" +"@graphql-codegen/introspection@1.17.8": + version "1.17.8" + resolved "https://registry.yarnpkg.com/@graphql-codegen/introspection/-/introspection-1.17.8.tgz#bc24ebe7fc32756c716f1cfbb18e4d5e30b25dc2" + integrity sha512-6xIq/Nq0JNIKlWrWIvja11S4CZmAVjQvAb8uBeHazP//TxLVDAxbz0sPV/RxfA70BpLhSKVlUwcu504Q4TXF6g== + dependencies: + "@graphql-codegen/plugin-helpers" "^1.17.8" + tslib "~2.0.0" + "@graphql-codegen/plugin-helpers@1.17.7": version "1.17.7" resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-1.17.7.tgz#5903105fda9470aafefe9da29e3a6fb3a52b8376" @@ -2876,7 +2925,61 @@ pascal-case "^3.1.1" tslib "~2.0.0" -"@graphql-tools/apollo-engine-loader@^6.0.18": +"@graphql-inspector/commands@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@graphql-inspector/commands/-/commands-2.1.0.tgz#c897fe9b20b9ddee10c131ce28aee8e28f5743aa" + integrity sha512-za+bUG2mQtK+PEaTSI/BhETiIXIeZ7irEdCVfFL5qZJPAs+3bTzHuS/osbGwDfEotjiB0waQwimUgHKu/oZGlA== + dependencies: + tslib "^2.0.0" + +"@graphql-inspector/core@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@graphql-inspector/core/-/core-2.1.0.tgz#fbc9d46a7c2f5a09cec7c219364abb022dade3ea" + integrity sha512-Yzj+D1skZ2R9WjdcEMAPnTyEkVKtwthbzjpX2bOhDruDVHUAwvJamJVD4BzaJ0O4U2YysUcLcTm8XLDe3saygg== + dependencies: + dependency-graph "0.9.0" + tslib "^2.0.0" + +"@graphql-inspector/coverage-command@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@graphql-inspector/coverage-command/-/coverage-command-2.1.0.tgz#9c548eac29f5db64dc2d5823be8d626e344c623f" + integrity sha512-nezpEL/Zlt4mVUMjJGuXrQ05Fp4ZcaUczdjTc9sHt226n2+aaT6vqdTNSmWPP+iFiFtxUo9ca79eQIEcH+e20w== + dependencies: + "@graphql-inspector/commands" "2.1.0" + "@graphql-inspector/core" "2.1.0" + "@graphql-inspector/logger" "2.1.0" + tslib "^2.0.0" + +"@graphql-inspector/graphql-cli-common@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@graphql-inspector/graphql-cli-common/-/graphql-cli-common-2.1.0.tgz#d755eefd23325daf76902cd5d8a30271d87df9a4" + integrity sha512-HRlPppm37MIUs2eNAeTyhs6f6IH0NQIRX/8QU4MGdwzJ4dq0eaSoUm//gxGj+GXKDTNvfA+bJfZgzrwZv7JDwQ== + dependencies: + "@graphql-cli/loaders" "4.0.0" + tslib "^2.0.0" + +"@graphql-inspector/logger@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@graphql-inspector/logger/-/logger-2.1.0.tgz#54ec4c2950c7e997d68805a0ddd0abfefda5cba0" + integrity sha512-jS2KSQzBft+0z8LFXaIOcr34CNpkPIFuH9ZDsvJMQkDClh19EPv5AURDtwuMHnjzuZSUNnuJ1AEALDtabb+G6A== + dependencies: + chalk "4.0.0" + figures "3.2.0" + log-symbols "4.0.0" + std-env "2.2.1" + tslib "^2.0.0" + +"@graphql-inspector/validate-command@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@graphql-inspector/validate-command/-/validate-command-2.1.0.tgz#cd986fac6e86f6c797ccab1879f390a358dc3c75" + integrity sha512-kT8Lpj9OU+hi6+7oLw67JacVRBskwPeMU13DJDK+bFgxgPu9CMlX+a1+yamsEfb16KUb9hhv2qJ4d8jpJaioLQ== + dependencies: + "@graphql-inspector/commands" "2.1.0" + "@graphql-inspector/core" "2.1.0" + "@graphql-inspector/logger" "2.1.0" + tslib "^2.0.0" + +"@graphql-tools/apollo-engine-loader@^6.0.0", "@graphql-tools/apollo-engine-loader@^6.0.18": version "6.0.18" resolved "https://registry.yarnpkg.com/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-6.0.18.tgz#7af9457dc7aab8068870445723a319454eb4f34e" integrity sha512-zP1tbf6FiIFE87oMPZ0WED8Is2YZ0zKLCDUxK5yTZ5I17mlk/8q6Q3gJbgDWi+QdA8eVcgArJBMWsUuclNNX0g== @@ -2885,7 +2988,7 @@ cross-fetch "3.0.5" tslib "~2.0.0" -"@graphql-tools/code-file-loader@^6.0.18": +"@graphql-tools/code-file-loader@^6.0.0", "@graphql-tools/code-file-loader@^6.0.18": version "6.0.18" resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-6.0.18.tgz#71873bcd3d5d9d7dd4279afd45de8c8c28fdd4a2" integrity sha512-V13hBezvcNZ+I1hoR+Q7bLH1pCxhZ9Nsn91bX+owhmOvn2W56dAn3RpGdnhoM7v6D6Uo2Zkdtqkaq1Pin4rexA== @@ -2906,7 +3009,7 @@ is-promise "4.0.0" tslib "~2.0.0" -"@graphql-tools/git-loader@^6.0.18": +"@graphql-tools/git-loader@^6.0.0", "@graphql-tools/git-loader@^6.0.18": version "6.0.18" resolved "https://registry.yarnpkg.com/@graphql-tools/git-loader/-/git-loader-6.0.18.tgz#ac0cdc07fbc8549ec2ca08456b2f70d214c3f4ba" integrity sha512-WR4K10+UtguMaN4/AqcJMRsTRy6Er9xKhehmEDMQTbu4pAICkLXyiSsA3f0jfhGBu6JudrzKD0HiaW6eWrMvVg== @@ -2914,7 +3017,7 @@ "@graphql-tools/graphql-tag-pluck" "6.0.18" "@graphql-tools/utils" "6.0.18" -"@graphql-tools/github-loader@^6.0.18": +"@graphql-tools/github-loader@^6.0.0", "@graphql-tools/github-loader@^6.0.18": version "6.0.18" resolved "https://registry.yarnpkg.com/@graphql-tools/github-loader/-/github-loader-6.0.18.tgz#070655daf02f4c8cd316f6cf96ee0c916cece835" integrity sha512-DqIuTiZvubN+uOtuuUyAJXHlgpsutyIGyNi+v/v9s4WO7oq+cE/Gc4dpmG6G8KHVXP7ngvMIGDDEXj4MGx1vpw== @@ -2995,7 +3098,7 @@ "@graphql-tools/utils" "6.0.16" tslib "~2.0.0" -"@graphql-tools/prisma-loader@^6.0.18": +"@graphql-tools/prisma-loader@^6.0.0", "@graphql-tools/prisma-loader@^6.0.18": version "6.0.18" resolved "https://registry.yarnpkg.com/@graphql-tools/prisma-loader/-/prisma-loader-6.0.18.tgz#a48216c155f3f90809781ff6acfa8c963e379252" integrity sha512-n27qZL18aRuPx7ODbDJbFz6ykB6TjbVs4G7Pv8hBmpmm7isy6FTpeqKV1BZtGcoio0zhBUuaKpYEs7pFzST3Iw== @@ -10622,7 +10725,7 @@ depd@~2.0.0: resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== -dependency-graph@^0.9.0: +dependency-graph@0.9.0, dependency-graph@^0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.9.0.tgz#11aed7e203bc8b00f48356d92db27b265c445318" integrity sha512-9YLIBURXj4DJMFALxXw9K3Y3rwb5Fk0X5/8ipCzaN84+gKxoHK43tVKRNakCQbiEx07E8Uwhuq21BpUagFhZ8w== @@ -12592,6 +12695,13 @@ figgy-pudding@^3.4.1, figgy-pudding@^3.5.1: resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== +figures@3.2.0, figures@^3.0.0, figures@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + figures@^1.3.5, figures@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" @@ -12607,13 +12717,6 @@ figures@^2.0.0: dependencies: escape-string-regexp "^1.0.5" -figures@^3.0.0, figures@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" - integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== - dependencies: - escape-string-regexp "^1.0.5" - file-entry-cache@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" @@ -18590,6 +18693,13 @@ lodash@4.17.20, lodash@^4.11.1, lodash@^4.15.0, lodash@^4.17.10, lodash@^4.17.11 resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== +log-symbols@4.0.0, log-symbols@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" + integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== + dependencies: + chalk "^4.0.0" + log-symbols@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" @@ -18611,13 +18721,6 @@ log-symbols@^3.0.0: dependencies: chalk "^2.4.2" -log-symbols@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" - integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== - dependencies: - chalk "^4.0.0" - log-update@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" @@ -25677,7 +25780,7 @@ statuses@^2.0.0: resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.0.tgz#aa7b107e018eb33e08e8aee2e7337e762dda1028" integrity sha512-w9jNUUQdpuVoYqXxnyOakhckBbOxRaoYqJscyIBYCS5ixyCnO7nQn7zBZvP9zf5QOPZcz2DLUpE3KsNPbJBOFA== -std-env@^2.2.1: +std-env@2.2.1, std-env@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/std-env/-/std-env-2.2.1.tgz#2ffa0fdc9e2263e0004c1211966e960948a40f6b" integrity sha512-IjYQUinA3lg5re/YMlwlfhqNRTzMZMqE+pezevdcTaHceqx8ngEi1alX9nNCk9Sc81fy1fLDeQoaCzeiW1yBOQ==