I use multiple labels on many nodes. GraphQL Architect inferred the schema and it looked ok. see below for portion of the schema. However when I query run a basic query it returns an empty array, which isn't right.
{Customer_Party_person {
name
}}
How can I check the cypher that is being run? I know there's data. When I simplified the schema to just a single label everything works well.
Any suggestion or root cause is welcome. Multiple labels are a nice feature and I don't want to switch to properties.
If you have your api running locally you should be able to see the Cypher that's being executed running in the terminal of that instance. The "is the power turned on" question is to ensure that you're correctly connected to your Neo4j instance and that you have Customer_Party_person nodes in the instance. I'd be interested to see what your Graphiql playground is showing for the schema as well.