athena_rs 3.3.0

Database gateway API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
//! Shared query builder helpers for AthenaClient.
use crate::client::AthenaClient;
use crate::client::backend::{BackendError, QueryResult};
use crate::client::gateway_api::{
    GatewayDeleteRequest, GatewayFetchRequest, GatewayInsertRequest, GatewayRpcFilterOperator,
    GatewayRpcRequest, GatewayUpdateRequest,
};
use serde_json::Value;

/// ## `OrderDirection`
/// Direction used for ordering results.
///
/// # Arguments
///
/// * `Asc` - The ascending order.
/// * `Desc` - The descending order.
///
/// # Returns
///
/// A `OrderDirection` containing the order direction.
///
#[derive(Debug, Clone, Copy)]
pub enum OrderDirection {
    Asc,
    Desc,
}

/// ## `Condition`
/// Represents a column-based filter condition.
///
/// # Arguments
///
/// * `column` - The column.
/// * `operator` - The operator.
/// * `values` - The values.
///
/// # Returns
///
/// A `Condition` containing the condition.
///
#[derive(Debug, Clone)]
pub struct Condition {
    pub column: String,
    pub operator: ConditionOperator,
    pub values: Vec<Value>,
}

/// ## `ConditionOperator`
/// Supported comparison operators.
///
/// # Arguments
///
/// * `Eq` - The equal operator.
/// * `Neq` - The not equal operator.
/// * `Gt` - The greater than operator.
/// * `Lt` - The less than operator.
/// * `In` - The in operator.
///
/// # Returns
///
/// A `ConditionOperator` containing the condition operator.
///
#[derive(Debug, Clone, Copy)]
pub enum ConditionOperator {
    Eq,
    Neq,
    Gt,
    Lt,
    In,
}

impl Condition {
    /// ## `new`
    /// Create a new condition.
    ///
    /// # Arguments
    ///
    /// * `column` - The column.
    /// * `operator` - The operator.
    /// * `values` - The values.
    ///
    /// # Returns
    ///
    /// A `Condition` containing the condition.
    ///
    pub fn new(column: impl Into<String>, operator: ConditionOperator, values: Vec<Value>) -> Self {
        Self {
            column: column.into(),
            operator,
            values,
        }
    }
}

/// Select query builder.
///
/// # Arguments
///
/// * `client` - The client.
/// * `table` - The table.
/// * `columns` - The columns.
/// * `raw_select` - The raw select.
/// * `conditions` - The conditions.
/// * `order_by` - The order by.
/// * `limit` - The limit.
/// * `offset` - The offset.
///
/// # Returns
///
/// A `SelectBuilder` containing the select builder.
///
pub struct SelectBuilder<'a> {
    client: &'a AthenaClient,
    table: String,
    columns: Vec<String>,
    raw_select: Option<String>,
    conditions: Vec<Condition>,
    order_by: Vec<(String, OrderDirection)>,
    limit: Option<usize>,
    offset: Option<usize>,
}

impl<'a> SelectBuilder<'a> {
    /// ## `new`
    /// Create a new select builder.
    ///
    /// # Arguments
    ///
    /// * `client` - The client.
    /// * `table` - The table.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub(crate) fn new(client: &'a AthenaClient, table: impl Into<String>) -> Self {
        Self {
            client,
            table: table.into(),
            columns: Vec::new(),
            raw_select: None,
            conditions: Vec::new(),
            order_by: Vec::new(),
            limit: None,
            offset: None,
        }
    }

    /// ## `columns`
    /// Set the columns.
    ///
    /// # Arguments
    ///
    /// * `columns` - The columns.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn columns(mut self, columns: impl IntoIterator<Item = impl Into<String>>) -> Self {
        self.columns = columns.into_iter().map(|c| c.into()).collect();
        self
    }

    /// ## `raw_select`
    /// Provide a Supabase/PostgREST-style `select` string with nested relations,
    /// e.g. `id,name,instruments(id,name)`.
    ///
    /// # Arguments
    ///
    /// * `select` - The raw select.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn raw_select(mut self, select: impl Into<String>) -> Self {
        self.raw_select = Some(select.into());
        self
    }

    /// ## `add_condition`
    /// Add a condition.
    ///
    /// # Arguments
    ///
    /// * `column` - The column.
    /// * `operator` - The operator.
    /// * `values` - The values.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    fn add_condition(
        mut self,
        column: &str,
        operator: ConditionOperator,
        values: Vec<Value>,
    ) -> Self {
        self.conditions
            .push(Condition::new(column, operator, values));
        self
    }

    /// Add a pre-built condition.
    pub fn where_condition(mut self, condition: Condition) -> Self {
        self.conditions.push(condition);
        self
    }

    /// Add multiple pre-built conditions.
    pub fn where_conditions(mut self, conditions: impl IntoIterator<Item = Condition>) -> Self {
        self.conditions.extend(conditions);
        self
    }

    /// ## `where_eq`
    /// Add an equality condition.
    ///
    /// # Arguments
    ///
    /// * `column` - The column.
    /// * `value` - The value.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn where_eq(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Eq, vec![value.into()])
    }

    /// ## `where_neq`
    /// Add a not equal condition.
    ///
    /// # Arguments
    ///
    /// * `column` - The column.
    /// * `value` - The value.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn where_neq(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Neq, vec![value.into()])
    }

    /// ## `where_gt`
    /// Add a greater than condition.
    ///
    /// # Arguments
    ///
    /// * `column` - The column.
    /// * `value` - The value.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn where_gt(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Gt, vec![value.into()])
    }

    /// ## `where_lt`
    /// Add a less than condition.
    ///
    /// # Arguments
    ///
    /// * `column` - The column.
    /// * `value` - The value.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn where_lt(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Lt, vec![value.into()])
    }

    /// ## `where_in`
    /// Add an in condition.
    ///
    /// # Arguments
    ///
    /// * `column` - The column.
    /// * `values` - The values.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn where_in(self, column: &str, values: Vec<Value>) -> Self {
        self.add_condition(column, ConditionOperator::In, values)
    }

    /// ## `order_by`
    /// Add an order by condition.
    ///
    /// # Arguments
    ///
    /// * `column` - The column.
    /// * `direction` - The direction.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn order_by(mut self, column: &str, direction: OrderDirection) -> Self {
        self.order_by.push((column.to_string(), direction));
        self
    }

    /// ## `limit`
    /// Set the limit.
    ///
    /// # Arguments
    ///
    /// * `value` - The limit.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn limit(mut self, value: usize) -> Self {
        self.limit = Some(value);
        self
    }

    /// ## `offset`
    /// Set the offset.
    ///
    /// # Arguments
    ///
    /// * `value` - The offset.
    ///
    /// # Returns
    ///
    /// A `SelectBuilder` containing the select builder.
    ///
    pub fn offset(mut self, value: usize) -> Self {
        self.offset = Some(value);
        self
    }

    /// ## `execute`
    /// Execute the select query.
    ///
    /// # Arguments
    ///
    /// # Returns
    ///
    /// A `BackendResult` containing the query result.
    ///
    pub async fn execute(self) -> Result<QueryResult, BackendError> {
        self.client.execute_select(self).await
    }

    /// ## `into_request`
    /// Convert the select builder into a typed gateway fetch request.
    ///
    /// # Arguments
    ///
    /// # Returns
    ///
    /// A `GatewayFetchRequest` containing the select query.
    ///
    pub(crate) fn into_request(self) -> GatewayFetchRequest {
        GatewayFetchRequest {
            table: self.table,
            columns: self.columns,
            raw_select: self.raw_select,
            conditions: self.conditions,
            order_by: self.order_by,
            limit: self.limit,
            offset: self.offset,
        }
    }
}

/// ## `InsertBuilder`
/// Insert query builder.
///
/// # Arguments
///
/// * `client` - The client.
/// * `table` - The table.
/// * `payload` - The payload.
///
/// # Returns
///
/// A `InsertBuilder` containing the insert builder.
///
pub struct InsertBuilder<'a> {
    client: &'a AthenaClient,
    table: String,
    payload: Value,
}

impl<'a> InsertBuilder<'a> {
    /// ## `new`
    /// Create a new insert builder.
    ///
    /// # Arguments
    ///
    /// * `client` - The client.
    /// * `table` - The table.
    ///
    /// # Returns
    ///
    /// A `InsertBuilder` containing the insert builder.
    ///
    pub(crate) fn new(client: &'a AthenaClient, table: impl Into<String>) -> Self {
        Self {
            client,
            table: table.into(),
            payload: Value::Null,
        }
    }

    /// ## `payload`
    /// Set the payload.
    ///
    /// # Arguments
    ///
    /// * `payload` - The payload.
    ///
    /// # Returns
    ///
    /// A `InsertBuilder` containing the insert builder.
    ///
    pub fn payload(mut self, payload: Value) -> Self {
        self.payload = payload;
        self
    }

    /// ## `execute`
    /// Execute the insert query.
    ///
    /// # Arguments
    ///
    /// # Returns
    ///
    /// A `BackendResult` containing the query result.
    ///
    pub async fn execute(self) -> Result<QueryResult, BackendError> {
        self.client.execute_insert(self).await
    }

    /// ## `into_request`
    /// Convert the insert builder into a typed gateway insert request.
    ///
    /// # Arguments
    ///
    /// # Returns
    ///
    /// A `GatewayInsertRequest` containing the insert query.
    ///
    pub(crate) fn into_request(self) -> GatewayInsertRequest {
        GatewayInsertRequest::new(self.table, self.payload)
    }
}

/// ## `UpdateBuilder`
/// Update query builder.
///
/// # Arguments
///
/// * `client` - The client.
/// * `table` - The table.
/// * `row_id` - The row id.
/// * `payload` - The payload.
///
/// # Returns
///
/// A `UpdateBuilder` containing the update builder.
///
pub struct UpdateBuilder<'a> {
    client: &'a AthenaClient,
    table: String,
    row_id: Option<String>,
    conditions: Vec<Condition>,
    payload: Value,
    allow_unfiltered: bool,
}

impl<'a> UpdateBuilder<'a> {
    /// ## `new`
    /// Create a new update builder.
    ///
    /// # Arguments
    ///
    /// * `client` - The client.
    /// * `table` - The table.
    /// * `row_id` - The row id.
    ///
    /// # Returns
    ///
    /// A `UpdateBuilder` containing the update builder.
    ///
    pub(crate) fn new(
        client: &'a AthenaClient,
        table: impl Into<String>,
        row_id: Option<String>,
    ) -> Self {
        Self {
            client,
            table: table.into(),
            row_id,
            conditions: Vec::new(),
            payload: Value::Null,
            allow_unfiltered: false,
        }
    }

    /// ## `row_id`
    /// Set the row id filter (`id = <row_id>`).
    pub fn row_id(mut self, row_id: impl Into<String>) -> Self {
        self.row_id = Some(row_id.into());
        self
    }

    fn add_condition(
        mut self,
        column: &str,
        operator: ConditionOperator,
        values: Vec<Value>,
    ) -> Self {
        self.conditions
            .push(Condition::new(column, operator, values));
        self
    }

    /// Add a pre-built condition.
    pub fn where_condition(mut self, condition: Condition) -> Self {
        self.conditions.push(condition);
        self
    }

    /// Add multiple pre-built conditions.
    pub fn where_conditions(mut self, conditions: impl IntoIterator<Item = Condition>) -> Self {
        self.conditions.extend(conditions);
        self
    }

    /// ## `where_eq`
    /// Add an equality condition.
    pub fn where_eq(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Eq, vec![value.into()])
    }

    /// ## `where_neq`
    /// Add a not equal condition.
    pub fn where_neq(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Neq, vec![value.into()])
    }

    /// ## `where_gt`
    /// Add a greater than condition.
    pub fn where_gt(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Gt, vec![value.into()])
    }

    /// ## `where_lt`
    /// Add a less than condition.
    pub fn where_lt(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Lt, vec![value.into()])
    }

    /// ## `where_in`
    /// Add an IN condition.
    pub fn where_in(self, column: &str, values: Vec<Value>) -> Self {
        self.add_condition(column, ConditionOperator::In, values)
    }

    /// ## `payload`
    /// Set the payload.
    ///
    /// # Arguments
    ///
    /// * `payload` - The payload.
    ///
    /// # Returns
    ///
    /// A `UpdateBuilder` containing the update builder.
    ///
    pub fn payload(mut self, payload: Value) -> Self {
        self.payload = payload;
        self
    }

    /// ## `unsafe_unfiltered`
    /// Explicitly opt-in to executing an update without any `row_id`/`where_*` filters.
    ///
    /// This should only be used for intentional full-table updates.
    pub fn unsafe_unfiltered(mut self) -> Self {
        self.allow_unfiltered = true;
        self
    }

    /// ## `execute`
    /// Execute the update query.
    ///
    /// # Arguments
    ///
    /// # Returns
    ///
    /// A `BackendResult` containing the query result.
    ///
    pub async fn execute(self) -> Result<QueryResult, BackendError> {
        self.client.execute_update(self).await
    }

    /// ## `into_request`
    /// Convert the update builder into a typed gateway update request.
    ///
    /// # Arguments
    ///
    /// # Returns
    ///
    /// A `GatewayUpdateRequest` containing the update query.
    ///
    pub(crate) fn into_request(self) -> GatewayUpdateRequest {
        let mut request = GatewayUpdateRequest::new(self.table, self.payload);
        if let Some(row_id) = self.row_id {
            request = request.row_id(row_id);
        }
        request = request.where_conditions(self.conditions);
        if self.allow_unfiltered {
            request = request.unsafe_unfiltered();
        }
        request
    }
}

/// Delete query builder.
///
/// # Arguments
///
/// * `client` - The client.
/// * `table` - The table.
/// * `row_id` - The row id.
///
/// # Returns
///
/// A `DeleteBuilder` containing the delete builder.
///
pub struct DeleteBuilder<'a> {
    client: &'a AthenaClient,
    table: String,
    row_id: Option<String>,
    conditions: Vec<Condition>,
    allow_unfiltered: bool,
}

impl<'a> DeleteBuilder<'a> {
    /// ## `new`
    /// Create a new delete builder.
    ///
    /// # Arguments
    ///
    /// * `client` - The client.
    /// * `table` - The table.
    /// * `row_id` - The row id.
    ///
    /// # Returns
    ///
    /// A `DeleteBuilder` containing the delete builder.
    ///
    pub(crate) fn new(
        client: &'a AthenaClient,
        table: impl Into<String>,
        row_id: Option<String>,
    ) -> Self {
        Self {
            client,
            table: table.into(),
            row_id,
            conditions: Vec::new(),
            allow_unfiltered: false,
        }
    }

    /// ## `row_id`
    /// Set the row id filter (`id = <row_id>`).
    pub fn row_id(mut self, row_id: impl Into<String>) -> Self {
        self.row_id = Some(row_id.into());
        self
    }

    fn add_condition(
        mut self,
        column: &str,
        operator: ConditionOperator,
        values: Vec<Value>,
    ) -> Self {
        self.conditions
            .push(Condition::new(column, operator, values));
        self
    }

    /// Add a pre-built condition.
    pub fn where_condition(mut self, condition: Condition) -> Self {
        self.conditions.push(condition);
        self
    }

    /// Add multiple pre-built conditions.
    pub fn where_conditions(mut self, conditions: impl IntoIterator<Item = Condition>) -> Self {
        self.conditions.extend(conditions);
        self
    }

    /// ## `where_eq`
    /// Add an equality condition.
    pub fn where_eq(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Eq, vec![value.into()])
    }

    /// ## `where_neq`
    /// Add a not equal condition.
    pub fn where_neq(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Neq, vec![value.into()])
    }

    /// ## `where_gt`
    /// Add a greater than condition.
    pub fn where_gt(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Gt, vec![value.into()])
    }

    /// ## `where_lt`
    /// Add a less than condition.
    pub fn where_lt(self, column: &str, value: impl Into<Value>) -> Self {
        self.add_condition(column, ConditionOperator::Lt, vec![value.into()])
    }

    /// ## `where_in`
    /// Add an IN condition.
    pub fn where_in(self, column: &str, values: Vec<Value>) -> Self {
        self.add_condition(column, ConditionOperator::In, values)
    }

    /// ## `unsafe_unfiltered`
    /// Explicitly opt-in to executing a delete without any `row_id`/`where_*` filters.
    ///
    /// This should only be used for intentional full-table deletes.
    pub fn unsafe_unfiltered(mut self) -> Self {
        self.allow_unfiltered = true;
        self
    }

    /// ## `execute`
    /// Execute the delete query.
    ///
    /// # Arguments
    ///
    /// # Returns
    ///
    /// A `BackendResult` containing the query result.
    ///
    pub async fn execute(self) -> Result<QueryResult, BackendError> {
        self.client.execute_delete(self).await
    }

    /// ## `into_request`
    /// Convert the delete builder into a typed gateway delete request.
    ///
    /// # Arguments
    ///
    /// # Returns
    ///
    /// A `GatewayDeleteRequest` containing the delete query.
    ///
    pub(crate) fn into_request(self) -> GatewayDeleteRequest {
        GatewayDeleteRequest {
            table: self.table,
            row_id: self.row_id,
            conditions: self.conditions,
            allow_unfiltered: self.allow_unfiltered,
        }
    }
}

/// RPC query builder.
pub struct RpcBuilder<'a> {
    client: &'a AthenaClient,
    request: GatewayRpcRequest,
}

impl<'a> RpcBuilder<'a> {
    pub(crate) fn new(client: &'a AthenaClient, function: impl Into<String>, args: Value) -> Self {
        Self {
            client,
            request: GatewayRpcRequest::new(function, args),
        }
    }

    pub fn schema(mut self, schema: impl Into<String>) -> Self {
        self.request = self.request.schema(schema);
        self
    }

    pub fn select(mut self, select: impl Into<String>) -> Self {
        self.request = self.request.select(select);
        self
    }

    fn add_filter(
        mut self,
        column: impl Into<String>,
        operator: GatewayRpcFilterOperator,
        value: Value,
    ) -> Self {
        self.request = self.request.filter(column, operator, value);
        self
    }

    pub fn eq(self, column: impl Into<String>, value: impl Into<Value>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::Eq, value.into())
    }

    pub fn neq(self, column: impl Into<String>, value: impl Into<Value>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::Neq, value.into())
    }

    pub fn gt(self, column: impl Into<String>, value: impl Into<Value>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::Gt, value.into())
    }

    pub fn gte(self, column: impl Into<String>, value: impl Into<Value>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::Gte, value.into())
    }

    pub fn lt(self, column: impl Into<String>, value: impl Into<Value>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::Lt, value.into())
    }

    pub fn lte(self, column: impl Into<String>, value: impl Into<Value>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::Lte, value.into())
    }

    pub fn in_(self, column: impl Into<String>, values: Vec<Value>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::In, Value::Array(values))
    }

    pub fn like(self, column: impl Into<String>, value: impl Into<Value>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::Like, value.into())
    }

    pub fn ilike(self, column: impl Into<String>, value: impl Into<Value>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::ILike, value.into())
    }

    pub fn is_null(self, column: impl Into<String>) -> Self {
        self.add_filter(column, GatewayRpcFilterOperator::Is, Value::Null)
    }

    pub fn order(mut self, column: impl Into<String>, direction: OrderDirection) -> Self {
        self.request = self.request.order_by(column, direction);
        self
    }

    pub fn limit(mut self, value: usize) -> Self {
        self.request = self.request.limit(value);
        self
    }

    pub fn offset(mut self, value: usize) -> Self {
        self.request = self.request.offset(value);
        self
    }

    pub fn count_exact(mut self) -> Self {
        self.request = self.request.count_exact();
        self
    }

    pub async fn execute(self) -> Result<QueryResult, BackendError> {
        self.client.execute_rpc(self).await
    }

    pub(crate) fn into_request(self) -> GatewayRpcRequest {
        self.request
    }
}