OBJECT

ContactForm

link GraphQL Schema definition

  • type ContactForm {
  • # Id
  • id: Int!
  • # Name
  • name: String!
  • # Description
  • description: String
  • # Date of creation
  • createdAt: DateTime!
  • # Date of last update
  • updatedAt: DateTime!
  • # Inheritance status
  • inheritanceStatus: String!
  • # ContactForm parent, if exists
  • parent: ContactForm
  • # Site that owns this ContactForm
  • site: PublicSite
  • }