OBJECT
ContactFormSubmission
link GraphQL Schema definition
- type ContactFormSubmission {
- # Id
- : Int!
- # ContactForm that owns those submissions
- : ContactForm!
- # Date of creation
- : DateTime!
- # Submitted data
- : AssociativeArray!
- # Sometimes there is a message here, sometimes not. When not, check `data` array.
- : String
- # Submissions count
- : Int!
- # Email of the submitter, guessed from submitted data (`data`).
- : String
- # Site where the submission has been submitted.
- : Site
- }