GraphQL reference

CreateProjectScopedAttachmentPayload

Object

Autogenerated return type of CreateProjectScopedAttachment.

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

Example

mutation CreateProjectScopedAttachment(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateProjectScopedAttachmentInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createProjectScopedAttachment(input: $input) {
        attachment
        errors
      }
    }
  }
}

Fields

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