Skip to main content

QuestionTemplateUpdateArgs

No description

input QuestionTemplateUpdateArgs {
id: ID!
name: String
key: String
prompt: String
presentationType: ID
isActive: Boolean
upsertArgTypes: [QuestionTemplateUpsertArgTypesArgs!]
deleteArgTypes: [String!]
upsertProperties: [QuestionTypePropertyValueArgs!]
deleteProperties: [String!]
}

Fields

QuestionTemplateUpdateArgs.id ● ID! non-null scalar common

ID of the template being edited.

QuestionTemplateUpdateArgs.name ● String scalar common

The updated name of the template.

QuestionTemplateUpdateArgs.key ● String scalar common

The key for the question template.

QuestionTemplateUpdateArgs.prompt ● String scalar common

The prompt for the question template

QuestionTemplateUpdateArgs.presentationType ● ID scalar common

The presentation type ID

QuestionTemplateUpdateArgs.isActive ● Boolean scalar common

Whether the template is active or not.

QuestionTemplateUpdateArgs.upsertArgTypes ● [QuestionTemplateUpsertArgTypesArgs!] list input procedures

Create and update question template arguments.

QuestionTemplateUpdateArgs.deleteArgTypes ● [String!] list scalar common

Delete any question template arguments.

QuestionTemplateUpdateArgs.upsertProperties ● [QuestionTypePropertyValueArgs!] list input procedures

Create and update question properties for the question type.

QuestionTemplateUpdateArgs.deleteProperties ● [String!] list scalar common

Delete any question properties.

Member Of

questionTemplateUpdate mutation