saleor-dashboard/src/attributes/mutations.ts
Dominik Żegleń 5b85d6c086
Use graphql-codegen (#1874)
* Use generated hooks in apps

* Remove unused files

* Use proper types in apps

* Use generated hooks in attributes

* Use generated hooks in auth module

* Use generated hooks in categories

* Use generated hooks in channels

* Use generated types in collections

* Remove legacy types from background tasks

* Use generated hooks in customers

* Use generated hooks in discounts

* Use generated hook in file upload

* Use generated types in gift cards

* Use generated types in home

* Use generated hooks in navigation

* Use generated hooks in orders

* Use generated hooks in pages

* Use generated hooks in page types

* Use generated hooks in permission groups

* Use generated hooks in plugins

* Use generated hooks in products

* Use fragment to mark product variants

* Improve code a bit

* Use generated hooks in page types

* Use generated types in searches

* Use generated hooks in shipping

* Use generated hooks in site settings

* Use generated hooks in staff members

* Use generated hooks in taxes

* Place all gql generated files in one directory

* Use generated hooks in translations

* Use global types from new generated module

* Use generated hooks in warehouses

* Use generated hooks in webhooks

* Use generated fragment types

* Unclutter types

* Remove hoc components

* Split hooks and types

* Fetch introspection file

* Delete obsolete schema file

* Fix rebase artifacts

* Fix autoreplace

* Fix auth provider tests

* Fix urls

* Remove leftover types

* Fix rebase artifacts
2022-03-09 09:56:55 +01:00

166 lines
3.2 KiB
TypeScript

import { gql } from "@apollo/client";
export const attributeBulkDelete = gql`
mutation AttributeBulkDelete($ids: [ID!]!) {
attributeBulkDelete(ids: $ids) {
errors {
...AttributeError
}
}
}
`;
export const attributeDelete = gql`
mutation AttributeDelete($id: ID!) {
attributeDelete(id: $id) {
errors {
...AttributeError
}
}
}
`;
export const attributeUpdateMutation = gql`
mutation AttributeUpdate($id: ID!, $input: AttributeUpdateInput!) {
attributeUpdate(id: $id, input: $input) {
attribute {
...AttributeDetails
}
errors {
...AttributeError
}
}
}
`;
export const attributeValueDelete = gql`
mutation AttributeValueDelete(
$id: ID!
$firstValues: Int
$afterValues: String
$lastValues: Int
$beforeValues: String
) {
attributeValueDelete(id: $id) {
attribute {
id
choices(
first: $firstValues
after: $afterValues
last: $lastValues
before: $beforeValues
) {
...AttributeValueList
}
}
errors {
...AttributeError
}
}
}
`;
export const attributeValueUpdateMutation = gql`
mutation AttributeValueUpdate(
$id: ID!
$input: AttributeValueUpdateInput!
$firstValues: Int
$afterValues: String
$lastValues: Int
$beforeValues: String
) {
attributeValueUpdate(id: $id, input: $input) {
attribute {
id
choices(
first: $firstValues
after: $afterValues
last: $lastValues
before: $beforeValues
) {
...AttributeValueList
}
}
errors {
...AttributeError
}
}
}
`;
export const attributeValueCreateMutation = gql`
mutation AttributeValueCreate(
$id: ID!
$input: AttributeValueCreateInput!
$firstValues: Int
$afterValues: String
$lastValues: Int
$beforeValues: String
) {
attributeValueCreate(attribute: $id, input: $input) {
attribute {
id
choices(
first: $firstValues
after: $afterValues
last: $lastValues
before: $beforeValues
) {
...AttributeValueList
}
}
errors {
...AttributeError
}
}
}
`;
export const attributeCreateMutation = gql`
mutation AttributeCreate($input: AttributeCreateInput!) {
attributeCreate(input: $input) {
attribute {
id
}
errors {
...AttributeError
}
}
}
`;
export const attributeValueReorderMutation = gql`
mutation AttributeValueReorder(
$id: ID!
$move: ReorderInput!
$firstValues: Int
$afterValues: String
$lastValues: Int
$beforeValues: String
) {
attributeReorderValues(attributeId: $id, moves: [$move]) {
attribute {
id
choices(
first: $firstValues
after: $afterValues
last: $lastValues
before: $beforeValues
) {
pageInfo {
...PageInfo
}
edges {
cursor
node {
id
}
}
}
}
errors {
...AttributeError
}
}
}
`;