mirror of https://github.com/stashapp/stash.git
32 lines
545 B
GraphQL
32 lines
545 B
GraphQL
mutation PerformerCreate(
|
|
$input: PerformerCreateInput!) {
|
|
|
|
performerCreate(input: $input) {
|
|
...PerformerData
|
|
}
|
|
}
|
|
|
|
mutation PerformerUpdate(
|
|
$input: PerformerUpdateInput!) {
|
|
|
|
performerUpdate(input: $input) {
|
|
...PerformerData
|
|
}
|
|
}
|
|
|
|
mutation BulkPerformerUpdate(
|
|
$input: BulkPerformerUpdateInput!) {
|
|
|
|
bulkPerformerUpdate(input: $input) {
|
|
...PerformerData
|
|
}
|
|
}
|
|
|
|
mutation PerformerDestroy($id: ID!) {
|
|
performerDestroy(input: { id: $id })
|
|
}
|
|
|
|
mutation PerformersDestroy($ids: [ID!]!) {
|
|
performersDestroy(ids: $ids)
|
|
}
|