Created
March 11, 2011 01:09
-
-
Save arockwell/865295 to your computer and use it in GitHub Desktop.
example_construct_wszd
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
| construct { | |
| ?pers_vivo_id core:authorInAuthorship ?authship . | |
| ?authship core:linkedInformationResource ?pub_vivo_id . | |
| ?pub_vivo_id | |
| bibo:pmid ?pub_pmid ; | |
| rdf:type ?pub_type ; | |
| rdfs:label ?pub_lbl ; | |
| core:Title ?pub_title ; | |
| bibo:volume ?pub_vol ; | |
| bibo:number ?pub_no ; | |
| core:hasPublicationVenue ?pub_venue_id ; | |
| bibo:abstract ?pub_abstract ; | |
| core:freetextKeyword ?pub_keyword . | |
| ?pub_venue_id rdfs:label ?pub_venue . | |
| } | |
| WHERE | |
| { | |
| ?pers_vivo_id rdf:type foaf:Person . | |
| ?pers_vivo_id core:authorInAuthorship ?authship . | |
| ?authship core:linkedInformationResource ?pub_vivo_id . | |
| ?pub_vivo_id | |
| bibo:pmid ?pub_pmid ; | |
| rdf:type ?pub_type ; | |
| rdfs:label ?pub_lbl ; | |
| core:Title ?pub_title ; | |
| bibo:volume ?pub_vol ; | |
| bibo:number ?pub_no ; | |
| core:hasPublicationVenue ?pub_venue_id ; | |
| bibo:abstract ?pub_abstract ; | |
| core:freetextKeyword ?pub_keyword . | |
| ?pub_venue_id rdfs:label ?pub_venue . | |
| } | |
| ORDER BY | |
| ?pers_vivo_id | |
| ?pub_vivo_id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment