| 61 | } |
| 62 | |
| 63 | export interface QueryNodePath<Node extends any> { |
| 64 | ancestors: Array<QueryNodePath<any>> |
| 65 | node: Node |
| 66 | parentPropKey: string |
| 67 | type: string |
| 68 | } |
| 69 | |
| 70 | export interface Query { |
| 71 | type: string |
nothing calls this directly
no outgoing calls
no test coverage detected