Skip to content

Commit

Permalink
Fix dataless compound relational index filter tests
Browse files Browse the repository at this point in the history
Copy-paste mistake introduced by me caught shortly after merge by Islam (thanks :))
  • Loading branch information
AndrewSisley committed May 2, 2024
1 parent 51ea214 commit c18d23e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func TestIndex_QueryWithIndexOnOneToManyRelationOrFilter_NoData(t *testing.T) {
Request: `query {
Program(
filter: {
_and: [
_or: [
{ certificationBodyOrg: { name: { _eq: "Test" } } }
]
}
Expand Down Expand Up @@ -105,9 +105,9 @@ func TestIndex_QueryWithIndexOnOneToManyRelationNotFilter_NoData(t *testing.T) {
Request: `query {
Program(
filter: {
_and: [
{ certificationBodyOrg: { name: { _eq: "Test" } } }
]
_not: {
certificationBodyOrg: { name: { _eq: "Test" } }
}
}
) {
name
Expand Down

0 comments on commit c18d23e

Please sign in to comment.