@Query("start u=node({0}),g=node:Group("id:*") where not (u-[:OWNS]->g) return g")List<Group> findGroupsNotForUser( Long id );
@Query("start u=node({0}),g=node:__types__(className='com.uberity.model.Group') where not (u-[:OWNS]->g) return g")List<Group> findGroupsNotForUser( Long id );
Can you find the groups in any other way than getting to them through the users?