GraphQL reference

RemoveIssueMembershipInput

Input

Autogenerated input type of RemoveIssueMembership

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

Example

mutation RemoveIssueMembership(
  $organizationId: ID!
  $projectId: ID!
  $input: RemoveIssueMembershipInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      removeIssueMembership(input: $input) {
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
issueMembershipIdID!
mutationMetadataJSON