Skip to content

Visitor

Info about a visitor to the site

Fields

about_me · String · Message from visitor
email · String · Email of the visitor
first_name · String · First name of visitor
id · ID! · required · The unique identifier of the visitor
last_name · String · Last 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
}