2019-03-23 14:56:59 +00:00
|
|
|
mutation PerformerCreate(
|
2021-04-16 06:06:35 +00:00
|
|
|
$input: PerformerCreateInput!) {
|
2019-03-23 14:56:59 +00:00
|
|
|
|
2021-04-16 06:06:35 +00:00
|
|
|
performerCreate(input: $input) {
|
2019-03-23 14:56:59 +00:00
|
|
|
...PerformerData
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation PerformerUpdate(
|
2020-12-04 01:42:56 +00:00
|
|
|
$input: PerformerUpdateInput!) {
|
2019-03-23 14:56:59 +00:00
|
|
|
|
2020-12-04 01:42:56 +00:00
|
|
|
performerUpdate(input: $input) {
|
2019-03-23 14:56:59 +00:00
|
|
|
...PerformerData
|
|
|
|
}
|
2019-08-14 21:40:51 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 01:25: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
|
|
|
}
|
2021-01-13 00:57:53 +00:00
|
|
|
|
|
|
|
mutation PerformersDestroy($ids: [ID!]!) {
|
|
|
|
performersDestroy(ids: $ids)
|
|
|
|
}
|