Skip to content

Instantly share code, notes, and snippets.

@harschware
Created June 29, 2011 21:06
Show Gist options
  • Select an option

  • Save harschware/1054972 to your computer and use it in GitHub Desktop.

Select an option

Save harschware/1054972 to your computer and use it in GitHub Desktop.
LEBM Friends Query 1
PREFIX ub: <http://www.lehigh.edu/~zhp2/2004/0401/univ-bench.owl#>
PREFIX cray: <http://www.cray.com/ontologies/lebm#>
SELECT *
WHERE {
?n0 cray:hasFriend ?n1 .
?n1 cray:hasFriend ?n0 .
?n0 ub:takesCourse ?n3 .
?n1 ub:takesCourse ?n3 .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment