Neo4J-Simplecypherquery假设有两个节点实体:12345678910111213publicclassAccountextendsBaseEntity{...@Fetch@RelatedTo(type="HAS_ROLE")privateSetroles=Sets.newHashSet();...}publicclassRoleextendsBaseEntity{...}在我的存储库中,我有一个查询应该按给定角色获取所有帐户:12345publicinterfaceAccountRepositoryextendsGraphRepository{ @Query("START