GraphQL reference

AddPeopleToProjectTeamForOrgOrCoInput

Input

Autogenerated input type of AddPeopleToProjectTeamForOrgOrCo

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

Example

mutation AddPeopleToProjectTeamForOrgOrCo(
  $organizationId: ID!
  $projectId: ID!
  $input: AddPeopleToProjectTeamForOrgOrCoInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      addPeopleToProjectTeamForOrgOrCo(input: $input) {
        project
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
giveProjectAccessBoolean
inviteBodyStringCustom invitation body for human-authored invitations. Agents must omit this argument to use the approved template.
inviteSubjectStringCustom invitation subject for human-authored invitations. Agents must omit this argument.
mutationMetadataJSON
nowISO8601DateTime
organizationOrCompanyProjectAssociationIdID!If the user is a member of the organization, provide the organization ID. If the user is a member of a company within the organization, use the company project association ID for the company and project to which the user should be added to the project team.
projectIdID!
sendInviteEmailBoolean
userAssociations[UserAssociationInput!]!