GraphQL reference

AddCompanyToProjectTeamInput

Input

Autogenerated input type of AddCompanyToProjectTeam

mutation { organization(id: $organizationId) { addCompanyToProjectTeam } }

Example

mutation AddCompanyToProjectTeam(
  $organizationId: ID!
  $input: AddCompanyToProjectTeamInput!
) {
  organization(id: $organizationId) {
    addCompanyToProjectTeam(input: $input) {
        project
        errors
      }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
commitmentNameString
companyIdID!
createCommitmentBoolean
mutationMetadataJSON
newAssociationIdID
newCommitmentIdID
nowISO8601DateTime
projectIdID!
sendInviteBoolean
typeString
userAssociations[UserAssociationInput!]