templateMergeInput
Merge multiple Templates into a single combined template.
Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
templates | [ID] | No | — | Template IDs to merge |
mergedTemplateTitle | String! | Yes | — | Title for the merged template |
Example
mutation MergeTemplates {
mergeTemplates(input: {
templates: ["dHBsLTE=", "dHBsLTI="]
mergedTemplateTitle: "Combined Contract"
})
}