QuestionResponse
Represents a single answer to a single question within a survey response.
type QuestionResponse {
createdAt: DateTime!
createdBy: String
displayValue: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
question: SurveyQuestion!
}
Fields
QuestionResponse.createdAt ● DateTime! non-null scalar
The date and time the record was created.
QuestionResponse.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
QuestionResponse.displayValue ● String scalar
The respondent's answer rendered as a single string. Optional. Null when no value was supplied for the question.
QuestionResponse.id ● ID! non-null scalar
The unique identifier of the question response.
QuestionResponse.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
QuestionResponse.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
QuestionResponse.question ● SurveyQuestion! non-null object
The question this response answers.
Member Of
SurveyResponse object