OBJECT
Search
link GraphQL Schema definition
- type Search implements Node {
- : ID!
- # The raw query that the user entered.
- : String!
- # The normalized query that the user entered.
- : String!
- # The number of results that the search returned.
- : Int!
- # The time that the search was made.
- : Time!
- # The time that the user converted the search by clicking on a result.
- : Time
- # The user that made the search.
- : User
- # The conversions that the user made from this search.
- : [SearchConversion!]
- }