OBJECT

FormAnswer

An answer in a filled form

link GraphQL Schema definition

  • type FormAnswer {
  • # The answer to the question
  • answer: String
  • # The ID of the custom module whose value determines whether to show or hide the
  • # custom module
  • conditional_custom_module_id: ID
  • # 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 type of filter
  • filter_type: String
  • # The filled form that this answer is a part of
  • form_answer_group: FormAnswerGroup
  • # The unique identifier of the answer
  • id: ID!
  • # The label of the question
  • label: String
  • # The id of the user that the answered question is for
  • user_id: String
  • # The value to check the filter against
  • value_to_filter: String
  • }