OBJECT

SearchResultItemConnection

A list of results that matched against a search query.

link GraphQL Schema definition

  • type SearchResultItemConnection {
  • # The number of pieces of code that matched the search query.
  • codeCount: Int!
  • # A list of edges.
  • edges: [SearchResultItemEdge]
  • # The number of issues that matched the search query.
  • issueCount: Int!
  • # A list of nodes.
  • nodes: [SearchResultItem]
  • # Information to aid in pagination.
  • pageInfo: PageInfo!
  • # The number of repositories that matched the search query.
  • repositoryCount: Int!
  • # The number of users that matched the search query.
  • userCount: Int!
  • # The number of wiki pages that matched the search query.
  • wikiCount: Int!
  • }