GraphQL reference

CreateStarTrekInput

Input

Autogenerated input type of CreateStarTrek

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

Example

mutation CreateStarTrek(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateStarTrekInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createStarTrek(input: $input) {
        starTrek
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
assignedUserIdID
captainString!
clientMutationIdStringA unique identifier for the client performing the mutation.
episodeCodeString!
idID!
mutationMetadataJSON
nowISO8601DateTime
quadrantString!
stardateISO8601Date
statusString!
titleString!