mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03: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>
24 lines
370 B
GraphQL
24 lines
370 B
GraphQL
mutation StudioCreate(
|
|
$input: StudioCreateInput!) {
|
|
|
|
studioCreate(input: $input) {
|
|
...StudioData
|
|
}
|
|
}
|
|
|
|
mutation StudioUpdate(
|
|
$input: StudioUpdateInput!) {
|
|
|
|
studioUpdate(input: $input) {
|
|
...StudioData
|
|
}
|
|
}
|
|
|
|
mutation StudioDestroy($id: ID!) {
|
|
studioDestroy(input: { id: $id })
|
|
}
|
|
|
|
mutation StudiosDestroy($ids: [ID!]!) {
|
|
studiosDestroy(ids: $ids)
|
|
}
|