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