GraphQL reference

CreateStarTrekPayload

Object

Autogenerated return 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
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!
starTrekStarTrek