Skip to content

Instantly share code, notes, and snippets.

@arockwell
Created March 11, 2011 01:09
Show Gist options
  • Select an option

  • Save arockwell/865295 to your computer and use it in GitHub Desktop.

Select an option

Save arockwell/865295 to your computer and use it in GitHub Desktop.
example_construct_wszd
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