GraphQL reference

CreateSpecSectionPayload

Object

Autogenerated return type of CreateSpecSection.

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

Example

mutation CreateSpecSection(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateSpecSectionInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createSpecSection(input: $input) {
        specSection
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!
specSectionSpecSection