Connector GraphQL mutations
Tridion Integration Framework enables connectors to perform GraphQL mutations on entities, which includes basic CRUD operations on external data.
Specify GraphQL mutations on entities using the following format:
mutation {
<MUTATION><TYPE>(<PARAMETERS>}
}
}
Where:
<MUTATION>is the general type of mutation, such ascreate<TYPE>is a specific type of entity, such as aContact<PARAMETERS>depend on the mutation type.
Following this structure, the mutation to create a new Contact would be: createContact(…)
The topics in this section describe the general syntax and usage of the create, update and delete mutations. The reference section gives examples of their usage with specific connectors and entity types.