moreResults property

String? moreResults
getter/setter pair

The state of the query after the current batch. Possible string values are:

  • "MORE_RESULTS_TYPE_UNSPECIFIED" : Unspecified. This value is never used.
  • "NOT_FINISHED" : There may be additional batches to fetch from this query.
  • "MORE_RESULTS_AFTER_LIMIT" : The query is finished, but there may be more results after the limit.
  • "MORE_RESULTS_AFTER_CURSOR" : The query is finished, but there may be more results after the end cursor.
  • "NO_MORE_RESULTS" : The query is finished, and there are no more results.

Implementation

core.String? moreResults;