GraphQL reference

CreateGridViewInput

Input

Autogenerated input type of CreateGridView

mutation { organization(id: $organizationId) { project(id: $projectId) { createGridView } } }

Example

mutation CreateGridView(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateGridViewInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createGridView(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
columnsJsonJSON!
customJsonJSON
filtersJsonJSON!
gridKeyString!
groupJsonJSON!
idID!
mutationMetadataJSON
nowISO8601DateTime
titleString!