Skip to content

Commit

Permalink
test(i): Fix dataless compound relational index filter tests (#2581)
Browse files Browse the repository at this point in the history
## Relevant issue(s)

Resolves #2580

## Description

Fix dataless compound relational index filter tests.
  • Loading branch information
AndrewSisley authored May 2, 2024
1 parent 51ea214 commit e7934b7
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 e7934b7

Please sign in to comment.