UpdateTemplateInput
Provides the fields and values to use when updating a template.
input UpdateTemplateInput {
id: ID!
module: TemplateModule
status: TemplateStatus
isDefault: Boolean
name: String
properties: JSON
header: String
body: String
footer: String
}
Fields
UpdateTemplateInput.id ● ID! non-null scalar
Specifies the template to update.
UpdateTemplateInput.module ● TemplateModule enum
The module of the template.
UpdateTemplateInput.status ● TemplateStatus enum
The template's status.
UpdateTemplateInput.isDefault ● Boolean scalar
Whether this template is the default for the given module.
UpdateTemplateInput.name ● String scalar
The name of the template.
UpdateTemplateInput.properties ● JSON scalar
The template's properties.
UpdateTemplateInput.header ● String scalar
The template's header.
UpdateTemplateInput.body ● String scalar
The template's body.
UpdateTemplateInput.footer ● String scalar
The template's footer.
Member Of
updateTemplate mutation