0

I'm trying to set up a Neo4j TestContainer with APOC and GraphQL, but I am encountering issues when enabling APOC.

Here's my setup:

  • Without APOC: The data is correctly inserted into Neo4j, and GraphQL works as expected
const NEO4J_IMAGE = 'neo4j:5.23';
await new Neo4jContainer(NEO4J_IMAGE).start();

*With APOC: The data is correctly inserted into Neo4j, but GraphQL fails to retrieve the data.

await new Neo4jContainer(NEO4J_IMAGE)
  .withApoc()
  .withStartupTimeout(120_000)
  .start();
1
  • Can you clarify which GraphQL plugin you mean? And please share the version of APOC you get tin that container. Commented May 20 at 15:45

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.