OBJECT
PhonebookMutation
Represents fields available for mutating contacts from Phonebook
link GraphQL Schema definition
- type PhonebookMutation {
- # Arguments
- # file: [Not documented]
- FileInput!): ListOfNonNullIntValueOrErrorList! ( :
- # Create company contact..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # company: [Not documented]
- PhonebookCompanyCreateInput!): NonNullContactValueOrErrorList! ( :
- # Update company contact..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # company: [Not documented]
- PhonebookCompanyUpdateInput!): NonNullContactValueOrErrorList! ( :
- # Create person contact..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # person: [Not documented]
- PhonebookPersonCreateInput!): NonNullContactValueOrErrorList! ( :
- # Update person contact..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # person: [Not documented]
- PhonebookPersonUpdateInput!): NonNullContactValueOrErrorList! ( :
- # Create company representative contact..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # representative: [Not documented]
- (
- PhonebookRepresentativeCreateInput! :
- ): NonNullContactValueOrErrorList!
- # Update company representative contact..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # representative: [Not documented]
- (
- PhonebookRepresentativeUpdateInput! :
- ): NonNullContactValueOrErrorList!
- # Delete (deactivate) contact if possible..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # contactNid: [Not documented]
- ContactNid!): NonNullBooleanValueOrErrorList! ( :
- # Permanently delete & anonymize data if possible. THIS ACTION IS IRREVERSIBLE.
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # contactNid: [Not documented]
- ContactNid!): NonNullBooleanValueOrErrorList! ( :
- # Restore contact if possible..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # contactNid: [Not documented]
- ContactNid!): NonNullBooleanValueOrErrorList! ( :
- # Upload files for contact..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # contactNid: [Not documented]
- # files: [Not documented]
- ContactNid!, : [Upload!]!): [File!]! ( :
- # Remove uploaded file for contact..
- # Requires access to resource GRAPHQL_CONTACT_EDIT
- #
- # Arguments
- # fileId: [Not documented]
- FileId!): Boolean! ( :
- }