Skip to content

personDiedAtPlace

personDiedAtPlace

Return the people who died at the place.

See the related model documentation

Example

From the record for Amsterdam, the record for Rembrandt would be in the response

Details

  • Class Given: Place
  • Returns Class: Person
  • Relationship: diedAt

SPARQL

SELECT DISTINCT ?person WHERE {
   BIND(<%current%>as ?where)
   ?person crm:P100i_died_in ?death .
    ?death crm:P7_took_place_at ?where .
 }