The list of ScoredDocuments returned from executing a
search request.
cursor
A Cursor to continue the search from the end of the
search results.
facets
The list of FacetResults returned from executing a search request
with faceted search enabled.
Raises
TypeError
If any of the parameters have an invalid type, or an unknown
attribute is passed.
ValueError
If any of the parameters have an invalid value.
Attributes
cursor
Returns a cursor that can be used to continue search from last result.
This corresponds to using a ResultsCursor in QueryOptions,
otherwise this will be None.
facets
Return the list of FacetResults that found in matched documents.
number_found
Returns the number of documents which were found for the search.
Note that this is an approximation and not an exact count.
If QueryOptions.number_found_accuracy parameter is set to 100
for example, then number_found <= 100 is accurate.
results
Returns the list of ScoredDocuments that matched the query.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-04-26 UTC."],[[["This documentation describes the `SearchResults` class, which represents the outcome of a search query, including the found documents and related data."],["The `SearchResults` class includes attributes like `number_found`, representing the approximate total number of matching documents, `results`, which is a list of the `ScoredDocuments` returned from the query, `cursor`, to continue the search from where it ended, and `facets`, if the query included any facet settings."],["The `SearchResults` class constructor takes `number_found`, `results`, `cursor`, and `facets` as arguments, with each having specific data types, and it may raise `TypeError` or `ValueError` exceptions if invalid types or values are used."],["The class also supports iteration, indicating you can directly loop through the search results, and it has aliases such as `google.appengine.api.search.search.SearchResults`."]]],[]]