OBJECT

FormAnswer

An answer in a filled form

link GraphQL Schema definition

  • type FormAnswer {
  • # The answer to the question
  • answer: String
  • # The creation time of the form answer
  • created_at: String
  • # The type of question that was filled out
  • custom_module: CustomModule
  • # The id of the question template
  • custom_module_id: String
  • # The answer to display (some conversions are made verse raw answer data)
  • displayed_answer: String
  • # The filled form that this answer is a part of
  • form_answer_group: FormAnswerGroup
  • id: ID!
  • # The label of the question
  • label: String
  • # The id of the user that the answered question is for
  • user_id: String
  • }