ModelSearchResultList

open_in_new

A page of models matching the specified query. In order to access the next page, call models again with all parameters the same except passing in nextOffset for offset.

GraphQL Schema definition

  • type ModelSearchResultList {
  • # The id of the next page matching the query.
  • # This will not be specified if there is no next page.
  • nextOffset: String
  • # The total number of records matching the query.
  • # This will be 0 if no records matched the query.
  • totalResults: Int!
  • # Up to `pageSize` models matching the given query.
  • results: [ModelSearchResult!]
  • }