Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We currently support `_type` as a node label property for entities that are created by the Neo4j store. In order to perform more abstract queries, we also need to add `_class`. Example query by `_type`: ```cy MATCH (account:github_account)-[OWNS]-> (repo:github_repo)-[ALLOWS]-> (user:github_user { role:"OUTSIDE" }) RETURN account, repo, user ``` Example query by `_class`: ```cy MATCH (account:Account)-[OWNS]-> (repo:CodeRepo)-[ALLOWS]-> (user:User { role:"OUTSIDE" }) RETURN account, repo, user ```
- Loading branch information