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
* @brief Fetches a multiple records from a Pocketbase collection. Supports sorting and filtering.
46
+
*
47
+
* @param page The page (aka. offset) of the paginated list (default to 1).
48
+
*
49
+
* @param perPage Specify the max returned records per page (default to 30).
50
+
*
51
+
* @param sort Specify the records order attribute(s).
52
+
* Add - / + (default) in front of the attribute for DESC / ASC order. Ex.:
53
+
* // DESC by created and ASC by id
54
+
* ?sort=-created,id
55
+
*
56
+
* @param filter Filter the returned records.
57
+
*
58
+
* @param expand (Optional) Auto expand record relations. Ex.:?expand=relField1,relField2.subRelField Supports up to 6-levels depth nested relations expansion.
59
+
* The expanded relations will be appended to the record under the expand property (eg. "expand": {"relField1": {...}, ...}).
60
+
* Only the relations to which the request user has permissions to view will be expanded.
61
+
*
62
+
* @param fields (Optional) Comma separated string of the fields to return in the JSON response (by default returns all fields). Ex.: ?fields=*,expand.relField.name
63
+
* * targets all keys from the specific depth level.
64
+
* In addition, the following field modifiers are also supported:
65
+
* :excerpt(maxLength, withEllipsis?)
66
+
* Returns a short plain text version of the field string value.
67
+
* Ex.: ?fields=*,description:excerpt(200,true)
68
+
*
69
+
* @param skipTotal If it is set the total counts query will be skipped and the response fields totalItems and totalPages will have -1 value.
70
+
* This could drastically speed up the search queries when the total counters are not needed or cursor based pagination is used.
71
+
* For optimization purposes, it is set by default for the getFirstListItem() and getFullList() SDKs methods.
72
+
*
73
+
* For more information, see: https://pocketbase.io/docs
0 commit comments