stash/ui/v2.5/graphql/client-schema.graphql
WithoutPants 7ac7963972
Save task options (#4620)
* Support setting nested UI values
* Accept partial for configureUI
* Send partial UI
* Save scan, generate and auto-tag options on change
* Send partials in saveUI
* Save library task options on change
2024-03-14 08:25:16 +11:00

26 lines
481 B
GraphQL

scalar UIConfig
scalar SavedObjectFilter
scalar SavedUIOptions
extend type ConfigResult {
ui: UIConfig!
}
extend type SavedFilter {
object_filter: SavedObjectFilter
ui_options: SavedUIOptions
}
extend input SaveFilterInput {
object_filter: SavedObjectFilter
ui_options: SavedUIOptions
}
extend input SetDefaultFilterInput {
object_filter: SavedObjectFilter
ui_options: SavedUIOptions
}
extend type Mutation {
configureUI(input: Map, partial: Map): UIConfig!
}