OBJECT

Search

link GraphQL Schema definition

  • type Search implements Node {
  • id: ID!
  • # The raw query that the user entered.
  • query: String!
  • # The normalized query that the user entered.
  • normalizedQuery: String!
  • # The number of results that the search returned.
  • resultsCount: Int!
  • # The time that the search was made.
  • createdAt: Time!
  • # The time that the user converted the search by clicking on a result.
  • convertedAt: Time
  • # The user that made the search.
  • user: User
  • # The conversions that the user made from this search.
  • conversions: [SearchConversion!]
  • }