ProcedureQuestionUpdateArgs
No description
input ProcedureQuestionUpdateArgs {
questionId: ID!
key: String
name: String
prompt: String
questionTypeId: ID
presentationType: String
isRequired: Boolean
isFlagged: Boolean
properties: [ProcedureQuestionPropertyValueArgs!]
sectionId: ID
toIndex: Int
translations: [QuestionTranslationArgs!]
instructionsId: String
tagId: ID
}
Fields
ProcedureQuestionUpdateArgs.questionId ● ID! non-null scalar common
The ID of the question being updated.
ProcedureQuestionUpdateArgs.key ● String scalar common
The question key (optional).
ProcedureQuestionUpdateArgs.name ● String scalar common
The question name (optional).
ProcedureQuestionUpdateArgs.prompt ● String scalar common
The prompt.
ProcedureQuestionUpdateArgs.questionTypeId ● ID scalar common
Update the question type.
ProcedureQuestionUpdateArgs.presentationType ● String scalar common
The presentation type ID (optional).
ProcedureQuestionUpdateArgs.isRequired ● Boolean scalar common
Whether the question is required (optional).
ProcedureQuestionUpdateArgs.isFlagged ● Boolean scalar common
Whether the question is flagged (optional).
ProcedureQuestionUpdateArgs.properties ● [ProcedureQuestionPropertyValueArgs!] list input procedures
The question's properties as defined by it's type.
ProcedureQuestionUpdateArgs.sectionId ● ID scalar common
The parent section ID.
ProcedureQuestionUpdateArgs.toIndex ● Int scalar common
If reordering the question.
ProcedureQuestionUpdateArgs.translations ● [QuestionTranslationArgs!] list input procedures
Set translations for the question.
ProcedureQuestionUpdateArgs.instructionsId ● String scalar common
Set instructions for the question as HTML.
ProcedureQuestionUpdateArgs.tagId ● ID scalar common
Set the ID of the tag
Member Of
procedureQuestionUpdate mutation