Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleReturn common citation information for Publications
SELECT ?doi ?infoResourcepub_label ?pmid $typetype_label ?journalvenue_label ?issn ?pubVenue ?issue ?startPage ?endPage ?volume ?dateTimeyear
WHERE{

    ?infoResourcepub vivo:hasPublicationVenue ?pubVenuevenue .
    
    ?pubVenuevenue rdf:type bibo:Journal .
    ?infoResourcevenue rdfbibo:typeissn $anyType?issn .
    ?infoResourcevenue bibo:doi ?doirdfs:label ?venue_label .

    ?pub rdfs:label $pub_label .
    ?infoResourcepub bibovitro:pmidmostSpecificType ?pmidtype .
    ?infoResourcetype bibordfs:pageStartlabel ?startPagetype_label .
  
    ?infoResourcepub bibovivo:pageEnddateTimeValue ?endPagedtv . 
    ?pubVenuedtv bibovivo:issndateTime ?issndt .
    BIND(SUBSTR(str(?dt),1,4) AS ?year)
    
    OPTIONAL { ?pubVenuepub bibo:volumedoi ?volumedoi . }
    .
OPTIONAL { ?pubVenuepub vivobibo:DateTimeValuepageStart ?dateTimestartPage . }
    .
OPTIONAL { ?pubVenuepub bibo:issuepageEnd ?issueendPage . }    .
?pubVenue rdfs:label ?journal .
?anyType rdfs:label ?type .
?infoResource rdfs:label $infoResource_label .
    OPTIONAL { ?pub bibo:volume ?volume . }
    OPTIONAL { ?pub bibo:issue ?issue . }
  
}

Authors

List Authors by Department

...