I am using R/Shiny with Apollo and the Neo4j GraphQL Library. I am inferring my schema using this:
const inferAugmentedSchema = driver => {
return inferSchema(driver).then(result => {
console.log(result.typeDefs)
return makeAugmentedSchema(...
If I copy and paste the query into the GraphQL playground API, it works! It must be something in my code. I don't know why it's not returning to the application.
The organization and team I belong to is using this template so I cannot move to the neo...