prefix bio:
prefix foaf:
prefix time:
prefix xsd:
prefix ex:
prefix thing:
select ?name where {
thing:widford bio:condition ?cond .
?cond time:start ?start .
?cond time:end ?end .
?cond ex:partOf ?x .
?x foaf:name ?name .
filter (xsd:integer(?start) <= 1841 && xsd:integer(?end) >= 1841) .
}