Skip to content

Commit

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

## Relevant issue(s)

Resolves sourcenetwork#2580

## Description

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

Please sign in to comment.