Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MacondoExpress committed Oct 7, 2024
1 parent c535901 commit 44a4fe0
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions packages/graphql/tests/integration/issues/2708.int.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,33 +365,6 @@ describe("https://github.com/neo4j/graphql/issues/2708", () => {
});
});

test("should find where genres_NONE", async () => {
const query = `
{
${movieType.plural}(where: { genres_NONE: { moviesAggregate: { count: 2 } } }) {
title
}
}
`;

const result = await testHelper.executeGraphQL(query);

expect(result.errors).toBeFalsy();
expect(result.data).toEqual({
[movieType.plural]: expect.toIncludeSameMembers([
{
title: movieTitle1,
},
{
title: movieTitle3,
},
{
title: movieTitle5,
},
]),
});
});

test("should not find genres_ALL where NONE true", async () => {
const query = `
{
Expand Down

0 comments on commit 44a4fe0

Please sign in to comment.