Skip to content

Instantly share code, notes, and snippets.

@tingletech
Last active March 11, 2016 06:35
Show Gist options
  • Save tingletech/064cc455b2ed61eb7dff to your computer and use it in GitHub Desktop.
Save tingletech/064cc455b2ed61eb7dff to your computer and use it in GitHub Desktop.
CONSTRUCT {
?subject gvp:prefLabelGVP ?GVP .
?subject <http://www.w3.org/2008/05/skos-xl#altLabel> ?al .
?subject <http://www.w3.org/2008/05/skos-xl#prefLabel> ?pl .
}
WHERE {
{
?subject rdf:type gvp:Subject.
?subject rdf:type skos:Concept.
}
?subject gvp:prefLabelGVP / skosxl:literalForm ?GVP .
?subject <http://www.w3.org/2008/05/skos-xl#altLabel> / skosxl:literalForm ?al . FILTER (lang(?al) = "en")
?subject <http://www.w3.org/2008/05/skos-xl#prefLabel> / skosxl:literalForm ?pl . FILTER (lang(?pl) = "en")
}
LIMIT 100 # http://vocab.getty.edu/sparql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment