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 single record from a Pocketbase collection
109
+
*
110
+
* @param recordId The ID of the record to view.
111
+
*
112
+
* @param expand (Optional) Auto expand record relations. Ex.:?expand=relField1,relField2.subRelField Supports up to 6-levels depth nested relations expansion.
113
+
* The expanded relations will be appended to the record under the expand property (eg. "expand": {"relField1": {...}, ...}).
114
+
* Only the relations to which the request user has permissions to view will be expanded.
115
+
*
116
+
* @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
117
+
* * targets all keys from the specific depth level. In addition, the following field modifiers are also supported:
118
+
* :excerpt(maxLength, withEllipsis?)
119
+
* Returns a short plain text version of the field string value.
120
+
* Ex.: ?fields=*,description:excerpt(200,true)
121
+
*
122
+
* For more information, see: https://pocketbase.io/docs
* @brief Fetches a single record from a Pocketbase collection
23
+
*
24
+
* @param recordId The ID of the record to view.
25
+
*
26
+
* @param expand (Optional) Auto expand record relations. Ex.:?expand=relField1,relField2.subRelField Supports up to 6-levels depth nested relations expansion.
27
+
* The expanded relations will be appended to the record under the expand property (eg. "expand": {"relField1": {...}, ...}).
28
+
* Only the relations to which the request user has permissions to view will be expanded.
29
+
*
30
+
* @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
31
+
* * targets all keys from the specific depth level.
32
+
* In addition, the following field modifiers are also supported:
33
+
* :excerpt(maxLength, withEllipsis?)
34
+
* Returns a short plain text version of the field string value.
35
+
* Ex.: ?fields=*,description:excerpt(200,true)
36
+
*
37
+
* For more information, see: https://pocketbase.io/docs
0 commit comments