File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public class PostgrestClient {
56
56
fn: String ,
57
57
params: U ,
58
58
count: CountOption ? = nil
59
- ) -> PostgrestTransformBuilder {
59
+ ) -> PostgrestFilterBuilder {
60
60
PostgrestRpcBuilder (
61
61
client: self ,
62
62
request: Request (
@@ -76,7 +76,7 @@ public class PostgrestClient {
76
76
public func rpc(
77
77
fn: String ,
78
78
count: CountOption ? = nil
79
- ) -> PostgrestTransformBuilder {
79
+ ) -> PostgrestFilterBuilder {
80
80
rpc ( fn: fn, params: NoParams ( ) , count: count)
81
81
}
82
82
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ public final class PostgrestRpcBuilder: PostgrestBuilder {
7
7
params: U ,
8
8
head: Bool = false ,
9
9
count: CountOption ? = nil
10
- ) -> PostgrestTransformBuilder {
10
+ ) -> PostgrestFilterBuilder {
11
11
// TODO: Support `HEAD` method
12
12
// https://github.com/supabase/postgrest-js/blob/master/src/lib/PostgrestRpcBuilder.ts#L38
13
13
assert ( head == false , " HEAD is not currently supported yet. " )
@@ -27,6 +27,6 @@ public final class PostgrestRpcBuilder: PostgrestBuilder {
27
27
}
28
28
}
29
29
30
- return PostgrestTransformBuilder ( self )
30
+ return PostgrestFilterBuilder ( self )
31
31
}
32
32
}
You can’t perform that action at this time.
0 commit comments