OBJECT

RequestedFormCompletion

A request, from a provider to a client, to fill out a form

link GraphQL Schema definition

  • type RequestedFormCompletion {
  • # The form to fill out
  • custom_module_form: CustomModuleForm
  • # The ID of the form to fill out
  • custom_module_form_id: String
  • # The relevant date to show
  • date_to_show: String
  • # The filled form that completes the request
  • form_answer_group: FormAnswerGroup
  • # The id of the filled form that completes the request
  • form_answer_group_id: String
  • # The unique identifier of the form
  • id: ID!
  • # type of form requested
  • item_type: String!
  • # The recipient (client)
  • recipient: User
  • # The ID of the recipient (client)
  • recipient_id: String
  • # Recurring Form related to the request
  • recurring_form: RecurringForm
  • # The sender (provider)
  • sender: User
  • # The ID of the sender (provider)
  • sender_id: String
  • # The status of the request
  • status: String
  • }