INPUT_OBJECT
CreateStoredViewMutationInput
The input object that defines the fields for the createStoredView mutation.
link GraphQL Schema definition
- input CreateStoredViewMutationInput {
- #   A name to identify this `StoredView`.
- : String!
- #   Whether or not this StoredView is available to all users.
- : Boolean
- #   The type of `StoredView`.
- : StoredViewType!
- #   The location in the UI that this view is available.
- : String!
- #   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
- }