Versions Compared

Key

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


Info
titleOutdated

This material pertains to outdated versions of VIVO. Rather than archiving the material, it should be updated to reflect current versions of VIVO 

Miscellaneous 

Retrieve the positions for a single person

Code Block
titleRetrieve the positions for a single person
linenumberstrue
SELECT *
WHERE {
    ?person rdfs:label  'Conlon, Michael' .
    ?person vivo:relatedBy ?position .
    ?person a foaf:Person .
    ?position a vivo:Position .
    ?position rdfs:label ?postion_label .
}