stash/ui/v2.5/graphql/client-schema.graphql
WithoutPants f9a624b803
Default view filters (#4962)
* Merge/adapt from yoshnopa:defaultDetails
* Deprecate and remove default filter calls
* Fix weird behaviour when clicking set as default
* Update deprecated get/set default filter resolvers
* Add config migration
---------
Co-authored-by: yoshnopa <usingusenet@protonmail.com>
2024-06-18 10:51:52 +10:00

21 lines
377 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 type Mutation {
configureUI(input: Map, partial: Map): UIConfig!
}