GraphQL reference

CreateIssueMembershipPayload

Object

Autogenerated return 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.
constructableUrlString
errors[String!]!