GraphQL reference

DeleteProjectScopedAttachmentInput

Input

Autogenerated input type of DeleteProjectScopedAttachment

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

Example

mutation DeleteProjectScopedAttachment(
  $organizationId: ID!
  $projectId: ID!
  $input: DeleteProjectScopedAttachmentInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      deleteProjectScopedAttachment(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
idID!
mutationMetadataJSON
recordIdID!
recordTypeProjectScopedAttachmentRecord!