OBJECT

RecurringForm

A Recurring Form

link GraphQL Schema definition

  • type RecurringForm {
  • # Associated custom module form
  • custom_module_form: CustomModuleForm
  • # Form itself
  • form_id: String
  • # Type of form
  • form_type: String
  • # Determines whether the user or group is connected to the recurring form
  • #
  • # Arguments
  • # connectable_id: [Not documented]
  • # connectable_type: [Not documented]
  • has_connected_recipient(
  • connectable_id: ID,
  • connectable_type: String
  • ): Boolean
  • id: ID!
  • # Interval of recurrence. Can be: '23:12' / 'Monday, Tuesday' / '31st'
  • interval: String
  • # Type of recurrence('Daily'(1) / 'Weekly'(2) / 'Monthly'(3))
  • interval_type: String
  • # Recurring form status
  • is_active: Boolean
  • # The day when reccurence ends
  • recurrence_end_at: String
  • # ID of provider who set up recurrence
  • user_id: String
  • # ID's of associated users and groups: ['1', '2', 'group-5', 'group-13']
  • users_and_groups: [String]!
  • }