Skip to content

Instantly share code, notes, and snippets.

@jstirnaman
Created November 17, 2014 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jstirnaman/e8d24dc95915e5f971b9 to your computer and use it in GitHub Desktop.
Save jstirnaman/e8d24dc95915e5f971b9 to your computer and use it in GitHub Desktop.
SPARQL: Select all linkedAuthor and linkedInformationResource in works RDF/XML from BibApp search results.
# Data source: http://experts.kumc.edu/search?utf8=%E2%9C%93&q=mass+spectrometry&commit=Search&format=rdf
PREFIX core: <http://vivoweb.org/ontology/core#>
PREFIX bibo: <http://purl.org/ontology/bibo/>
SELECT ?author ?work
WHERE
{
?x core:linkedAuthor ?author.
?x core:linkedInformationResource ?work
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment