OBJECT

Inquiry

link GraphQL Schema definition

  • type Inquiry {
  • # The Advert to which the inquiry relates
  • advert: Advert
  • # The Full name of the person raising the inquiry
  • customerFullName: String!
  • # The email address of the person raising the inquiry
  • email: String!
  • id: ID!
  • # Whether or not customer subscribed to the email marketing list
  • marketingOptIn: Boolean!
  • # The message, question or inquiry that has been raised by a customer
  • message: String!
  • # The phone number of the person raising the inquiry
  • phone: String
  • # The post code of the person raising the inquiry
  • postCode: String
  • # The Seller to which the inquiry relates
  • seller: Seller!
  • }