OBJECT

Visitor

Info about a visitor to the site

link GraphQL Schema definition

  • type Visitor {
  • # Message from visitor
  • about_me: String
  • # Email of the visitor
  • email: String
  • # First name of visitor
  • first_name: String
  • # The unique identifier of the visitor
  • id: ID!
  • # Last name of visitor
  • last_name: String
  • # Phone number of visitor
  • phone_number: String
  • }