OBJECT

Form

link GraphQL Schema definition

  • type Form {
  • # Id
  • id: Int!
  • # Translations for this form
  • translations: [FormTranslation!]!
  • # Whether this form is active
  • enabled: Boolean!
  • # List of recipient email addresses
  • recipientEmails: [String!]!
  • # Form fields configuration
  • fields: AssociativeArray!
  • # Date of creation
  • createdAt: DateTime!
  • # Date of last update
  • updatedAt: DateTime!
  • # Paginated list of submissions for this form
  • #
  • # Arguments
  • # page: [Not documented]
  • # perPage: [Not documented]
  • paginatedSubmissions(page: Int, perPage: Int): PaginatableFormSubmissions
  • }