Visitor
Info about a visitor to the site
Fields
first_name
· String
· First name of visitor phone_number
· String
· Phone number of visitor Used By
Definition
"""Info about a visitor to the site"""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}