GraphQL reference

CreateIssueMembershipInput

Input

Autogenerated input type of CreateIssueMembership

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

Example

mutation CreateIssueMembership(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateIssueMembershipInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createIssueMembership(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
createdAtISO8601DateTime
idID!
issueIdID!
mutationMetadataJSON
updatedAtISO8601DateTime
userIdID!