[[["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 2025-09-03 UTC."],[[["\u003cp\u003e\u003ccode\u003eQueryResultList\u003c/code\u003e is an interface that represents a list of results obtained from executing a \u003ccode\u003eQuery\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIt extends the standard \u003ccode\u003eList<T>\u003c/code\u003e interface, meaning it inherits all the standard list functionalities.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003egetCursor()\u003c/code\u003e method retrieves a \u003ccode\u003eCursor\u003c/code\u003e that identifies the position immediately following the last result in the current list, enabling result continuation.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003egetIndexList()\u003c/code\u003e method returns a list of \u003ccode\u003eIndex\u003c/code\u003e objects that were utilized in executing the query, providing insight into the query's execution.\u003c/p\u003e\n"]]],[],null,["# Interface QueryResultList<T> (2.0.0)\n\n public interface QueryResultList\u003cT\u003e extends List\u003cT\u003e\n\nA list of results returned by executing a [Query](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.search.Query(class)). \n\nImplements\n----------\n\n[List\\\u003cT\\\u003e](https://docs.oracle.com/javase/8/docs/api/java/util/List.html)\n\nMethods\n-------\n\n### getCursor()\n\n public abstract Cursor getCursor()\n\nGets a [Cursor](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.datastore.Cursor) that points to the result immediately after the last one in this list.\n\n### getIndexList()\n\n public abstract List\u003cIndex\u003e getIndexList()\n\nGet the indexes used to perform the query."]]