Skip to content

CreateLabelInput

Input for the createLabel mutation

graphql
input CreateLabelInput {
  color: Color!
  description: String!
  name: String!
  trackables: [ID!]!
}

Fields

CreateLabelInput.color ● Color! non-null scalar

Initial color of the Label

CreateLabelInput.description ● String! non-null scalar

The description of the NamedNode

CreateLabelInput.name ● String! non-null scalar

The name of the NamedNode, must not be blank

CreateLabelInput.trackables ● [ID!]! non-null scalar

IDs of Trackables the Label is added to, at least one required.

Member Of

createLabel mutation

Released under the MIT License.