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();