INPUT_OBJECT
EmailTemplateInput
link GraphQL Schema definition
1 input EmailTemplateInput { 3 2 : 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. 7 : String! 10 9 : TemplateLanguage 12 11 : String 14 13 : String 18 15 # Default values for variables referenced in the template. Required when the 16 # template code contains Handlebars variable references. 17 : JSONData 20 19 : ID 21 }