INPUT_OBJECT
UpdateStoredViewMutationInput
The input object that defines the fields for the updateStoredView mutation.
link GraphQL Schema definition
- input UpdateStoredViewMutationInput {
- # A name to identify this `StoredView`.
- : String
- # Whether or not this StoredView is available to all users.
- : Boolean
- # The type of `StoredView`.
- : StoredViewType
- # The column used to sort the filtered results.
- : String
- # The direction to sort in.
- : SortDirection
- # The list of filter groups for this `StoredView`.
- : [StoredGroupMutationInput]
- # A note about this entity.
- : NoteMutationInput
- # Setting this value to `true` will set `sort_column` to null.
- : Boolean
- # Setting this value to `true` will set `sort_direction` to null.
- : Boolean
- }