stash/graphql/documents/mutations/performer.graphql

32 lines
545 B
GraphQL
Raw Normal View History

mutation PerformerCreate(
$input: PerformerCreateInput!) {
performerCreate(input: $input) {
...PerformerData
}
}
mutation PerformerUpdate(
$input: PerformerUpdateInput!) {
performerUpdate(input: $input) {
...PerformerData
}
2019-08-14 21:40:51 +00:00
}
mutation BulkPerformerUpdate(
$input: BulkPerformerUpdateInput!) {
bulkPerformerUpdate(input: $input) {
...PerformerData
}
}
2019-08-14 21:40:51 +00:00
mutation PerformerDestroy($id: ID!) {
performerDestroy(input: { id: $id })
2020-10-24 03:31:39 +00:00
}
mutation PerformersDestroy($ids: [ID!]!) {
performersDestroy(ids: $ids)
}