Created
June 30, 2016 12:35
-
-
Save ashepherd/4f00677924a326d78631f8f243fea1be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX gl: <http://schema.geolink.org/1.0/base/main#> | |
SELECT DISTINCT ?g ?type ?p | |
WHERE { | |
GRAPH ?g { | |
?cruise a gl:Cruise . | |
{ ?resource ?p ?cruise . } | |
UNION | |
{ ?cruise ?p ?resource . } | |
?resource a ?type . | |
FILTER (REGEX(?type, 'http://schema.geolink.org/1.0/base/main#', 'i')) | |
FILTER (REGEX(?p, 'http://schema.geolink.org/1.0/base/main#', 'i')) | |
} | |
} | |
ORDER BY ?type ?p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment