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
@@ -129,31 +129,69 @@ public final class PostgrestClient: Sendable {
129
129
/// - Parameters:
130
130
/// - fn: The function name to call.
131
131
/// - params: The parameters to pass to the function call.
132
+
/// - head: When set to `true`, `data`, will not be returned. Useful if you only need the count.
133
+
/// - get: When set to `true`, the function will be called with read-only access mode.
132
134
/// - count: Count algorithm to use to count rows returned by the function. Only applicable for [set-returning functions](https://www.postgresql.org/docs/current/functions-srf.html).
/// - head: When set to `true`, `data`, will not be returned. Useful if you only need the count.
186
+
/// - get: When set to `true`, the function will be called with read-only access mode.
151
187
/// - count: Count algorithm to use to count rows returned by the function. Only applicable for [set-returning functions](https://www.postgresql.org/docs/current/functions-srf.html).
/// By default, `.insert()`, `.update()`, `.upsert()`, and `.delete()` do not return modified rows. By calling this method, modified rows are returned in `value`.
0 commit comments