indexesUsed property

List<Map<String, Object?>>? indexesUsed
getter/setter pair

The indexes selected for the query.

For example: [ {"query_scope": "Collection", "properties": "(foo ASC, name ASC)"}, {"query_scope": "Collection", "properties": "(bar ASC, name ASC)"} ]

The values for Object must be JSON objects. It can consist of num, String, bool and null as well as Map and List values.

Implementation

core.List<core.Map<core.String, core.Object?>>? indexesUsed;