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
/// Refer to the [Cursor Based Pagination](https://appwrite.io/docs/pagination#cursor-pagination)
163
162
/// docs for more information.
164
163
staticStringcursorBefore(String id) =>
165
164
Query._('cursorBefore', null, id).toString();
166
165
167
166
/// Return results after [id].
168
-
///
167
+
///
169
168
/// Refer to the [Cursor Based Pagination](https://appwrite.io/docs/pagination#cursor-pagination)
/// Refer to the [Offset Pagination](https://appwrite.io/docs/pagination#offset-pagination)
180
179
/// docs for more information.
181
180
staticStringoffset(int offset) =>
182
181
Query._('offset', null, offset).toString();
183
182
184
183
/// Filter resources where [attribute] is at a specific distance from the given coordinates.
185
-
staticStringdistanceEqual(String attribute, List<dynamic> values, num distance, [bool meters =true]) =>
0 commit comments