You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Providing a `query_expr` parameter will try to apply the keys of the expression to an
66
+
67
+
- Providing a `query_expr` parameter will try to apply the keys of the expression to an
67
68
existing index.
68
-
- Providing a `filter_expr` parameter will filter the results of
69
+
- Providing a `filter_expr` parameter will filter the results of
69
70
a passed `query_expr` or run a dynamodb `scan` if no `query_expr` is passed.
70
-
- An empty call to `query()` will return the scan results (and be resource
71
+
- An empty call to `query()` will return the scan results (and be resource
71
72
intensive).
72
-
- Providing a `limit` parameter will limit the number of results. If more results remain, the returned dataset will have an `last_evaluated_key` property that can be passed to `exclusive_start_key` to continue with the next page.
73
-
- Providing `order='desc'` will return the result set in descending order. This is not available for query calls that "scan" dynamodb.
73
+
- Providing a `limit` parameter will limit the number of results. If more results remain, the returned dataset will have an `last_evaluated_key` property that can be passed to `exclusive_start_key` to continue with the next page.
74
+
- Providing `order='desc'` will return the result set in descending order. This is not available for query calls that "scan" dynamodb.
0 commit comments