OBJECT
ContactMutation
link GraphQL Schema definition
- type ContactMutation {
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # contact: [Not documented]
- (: ContactCreateInput!): Contact!
- # Requires access to resource GRAPHQL_CONTACT.
- # Cannot edit special contacts
- #
- # Arguments
- # contactNid: [Not documented]
- # contact: [Not documented]
- (: ContactNid!, : ContactUpdateInput!): Contact!
- # Requires access to resource CONTACT_DELETE_PERMANENTLY.
- # Cannot edit special contacts
- #
- # Arguments
- # contactNidList: [Not documented]
- (: [ContactNid!]!): Boolean
- # Label related mutations
- : ContactLabelMutation!
- # Merges contacts into single one
- #
- # Arguments
- # targetContactNid:
- # contactNidListToMerge:
- (: ContactNid!, : [ContactNid!]!): NonNullContactValueOrErrorList!
- # Arguments
- # contactNidListToDelete:
- (: [ContactNid!]!): NonNullBooleanValueOrErrorList!
- # Arguments
- # contactNidListToDelete:
- (
- : [ContactNid!]!
- ): NonNullBooleanValueOrErrorList!
- # Requires access to resource CONTACT_MASK
- : ContactMaskMutationSection!
- # Passport related mutations.
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- : ContactPassportMutationSection!
- # Requires access to resource GRAPHQL_CONTACT
- #
- # Arguments
- # contactExternalId:
- # contact:
- (
- : ContactExternalId!,
- : ContactUpdateInput!
- ): Contact!
- }