mirror of https://github.com/stashapp/stash.git
16 lines
345 B
GraphQL
16 lines
345 B
GraphQL
mutation EnableDLNA($input: EnableDLNAInput!) {
|
|
enableDLNA(input: $input)
|
|
}
|
|
|
|
mutation DisableDLNA($input: DisableDLNAInput!) {
|
|
disableDLNA(input: $input)
|
|
}
|
|
|
|
mutation AddTempDLNAIP($input: AddTempDLNAIPInput!) {
|
|
addTempDLNAIP(input: $input)
|
|
}
|
|
|
|
mutation RemoveTempDLNAIP($input: RemoveTempDLNAIPInput!) {
|
|
removeTempDLNAIP(input: $input)
|
|
}
|