Skip to content

Commit

Permalink
fix_ use genres_SOME
Browse files Browse the repository at this point in the history
  • Loading branch information
mjfwebb committed Nov 29, 2024
1 parent 4bc365d commit 5135f8c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,10 @@ describe("Connection API - cypher directive filtering - Relationship", () => {
query {
moviesConnection(
where: {
OR: [{ actors_SOME: { name_EQ: "Jada Pinkett Smith" } }, { genres: { name_EQ: "Romance" } }]
OR: [
{ actors_SOME: { name_EQ: "Jada Pinkett Smith" } }
{ genres_SOME: { name_EQ: "Romance" } }
]
}
) {
edges {
Expand Down

0 comments on commit 5135f8c

Please sign in to comment.