Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
02-14-2022 11:16 PM
I came across that I can run graphql neo4j
Node JS app in DEBUG mode to view the Cypher queries behind and below NPM script is suggest!
"scripts": {
"start": "DEBUG=@neo4j/graphql:* node index.js"
},
I am getting error in Window 10 command prompt like, What's the solution here?
'DEBUG' is not recognized as an internal or external command,
04-15-2022 08:59 PM
14
If you are used to powershell, I recommend this setup in your package.json , then you can just run npm start
so you don't type all that out every time.
"scripts": {
"start": "@powershell $env:DEBUG='*,-express:router*' ; node app.js"
},
09-17-2022 09:12 AM
Thank you very much. This was a great help in working through chapter 4 page 78 of Full Stack GraphQL Applications by William Lyon.
All the sessions of the conference are now available online