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
@@ -798,7 +793,7 @@ The `cd` filter is used to return results where every element of the array colum
798
793
}
799
794
```
800
795
801
-
=== "`cd` Filter Result"
796
+
=== "`containedBy` Filter Result"
802
797
```json
803
798
{
804
799
"data": {
@@ -828,13 +823,13 @@ The `cd` filter is used to return results where every element of the array colum
828
823
}
829
824
```
830
825
831
-
The `cd` filter can also accept a single scalar. In this case, only results where the only element in the array column is the input scalar are returned.
826
+
The `containedBy` filter can also accept a single scalar. In this case, only results where the only element in the array column is the input scalar are returned.
832
827
833
-
=== "`cd` Filter with Scalar Query"
828
+
=== "`containedBy` Filter with Scalar Query"
834
829
```graphql
835
830
{
836
831
blogCollection(
837
-
filter: {tags: {cd: "travel"}},
832
+
filter: {tags: {containedBy: "travel"}},
838
833
) {
839
834
edges {
840
835
cursor
@@ -849,7 +844,7 @@ The `cd` filter can also accept a single scalar. In this case, only results wher
849
844
}
850
845
```
851
846
852
-
=== "`cd` Filter with Scalar Result"
847
+
=== "`containedBy` Filter with Scalar Result"
853
848
```json
854
849
{
855
850
"data": {
@@ -870,13 +865,13 @@ The `cd` filter can also accept a single scalar. In this case, only results wher
870
865
}
871
866
```
872
867
873
-
The `ov` filter is used to return results where the array column and the input array have at least one element in common.
868
+
The `overlaps` filter is used to return results where the array column and the input array have at least one element in common.
874
869
875
-
=== "`ov` Filter Query"
870
+
=== "`overlaps` Filter Query"
876
871
```graphql
877
872
{
878
873
blogCollection(
879
-
filter: {tags: {ov: ["tech", "travel"]}},
874
+
filter: {tags: {overlaps: ["tech", "travel"]}},
880
875
) {
881
876
edges {
882
877
cursor
@@ -891,7 +886,7 @@ The `ov` filter is used to return results where the array column and the input a
0 commit comments