mirror of
https://github.com/stashapp/stash.git
synced 2025-12-10 02:15:30 +01:00
* added details to performers and studios * added deathdate, hair_color and weight to performers * Simplify performer/studio create mutations * Add changelog and recategorised Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
31 lines
545 B
GraphQL
31 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)
|
|
}
|