OBJECT

ContactFormSubmission

link GraphQL Schema definition

  • type ContactFormSubmission {
  • # Id
  • id: Int!
  • # ContactForm that owns those submissions
  • contactForm: ContactForm!
  • # Date of creation
  • createdAt: DateTime!
  • # Submitted data
  • data: AssociativeArray!
  • # Sometimes there is a message here, sometimes not. When not, check `data` array.
  • message: String
  • # Submissions count
  • countSubmissions: Int!
  • # Email of the submitter, guessed from submitted data (`data`).
  • fromEmail: String
  • # Site where the submission has been submitted.
  • site: Site
  • }

link Require by