Get living variables with their types from a Cypher query
type Q = "PROFILE MATCH (person:Person)-[r]->(other:Person:Public {prop: 123}) WITH *, r AS x, type(r) AS types RETURN *";type V = Vars<Q>;// ^? type V = {// person: Node;// other: Node;// r: Relationship;// x: Relationship;// types: Unknown;// }
Generated using TypeDoc
Get living variables with their types from a Cypher query
Example