INPUT_OBJECT

EmailTemplateInput

link GraphQL Schema definition

1input EmailTemplateInput {
3
2id: String!
8
4# The template body as an escaped string (newlines as \n, double quotes as \").
5# For Handlebars templates, all variable references in the template must have a
6# corresponding key in defaultArgs, or the mutation will fail.
7code: String!
10
9lang: TemplateLanguage
12
11defaultFromName: String
14
13defaultSubject: String
18
15# Default values for variables referenced in the template. Required when the
16# template code contains Handlebars variable references.
17defaultArgs: JSONData
20
19organizationGuid: ID
21}