mirror of https://github.com/stashapp/stash.git
26 lines
531 B
GraphQL
26 lines
531 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)
|
|
}
|