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`.
  • name: String!
  • # Whether or not this StoredView is available to all users.
  • is_global: Boolean
  • # The type of `StoredView`.
  • type: StoredViewType!
  • # The location in the UI that this view is available.
  • location: String!
  • # The column used to sort the filtered results.
  • sort_column: String
  • # The direction to sort in.
  • sort_direction: SortDirection
  • # The list of filter groups for this `StoredView`.
  • stored_groups: [StoredGroupMutationInput]
  • # A note about this entity.
  • note: NoteMutationInput
  • }

link Require by