Skip to content

Instantly share code, notes, and snippets.

@lynas
Created January 31, 2018 03:08
Show Gist options
  • Save lynas/914381b9e6dbe99ff4fbfce820bd616a to your computer and use it in GitHub Desktop.
Save lynas/914381b9e6dbe99ff4fbfce820bd616a to your computer and use it in GitHub Desktop.
public interface OrgRepo{
@Query("match (cl:Class)-[:classBelongsToAnOrganization]->(org:Organization) where ID(org) = {0} return cl")
public List<Course> findListByOrganizationId(orgId: Long): List<Course>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment