Created
August 3, 2018 21:48
-
-
Save jcoyne/c5daf0821698e7eb7339305e5d6728a0 to your computer and use it in GitHub Desktop.
Query for authors/editors
This file contains hidden or 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 vivo: <http://vivoweb.org/ontology/core#> | |
PREFIX vcard: <http://www.w3.org/2006/vcard/ns#> | |
SELECT ?y ?z | |
WHERE { | |
<http://example.com/book1> ?p ?o . | |
?o vivo:relates ?v . | |
?o rdf:type ?z . | |
?v vcard:hasName ?t . | |
?t vcard:value ?y . | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To get a list of names & affiliations for all authors or editors related to a known publication: