objectProductionInfluencedByPlace
objectProductionInfluencedByPlace
Return the objects whose production was influenced by the place.
See the related model documentation
Example
Details
- Class Given: Place
- Returns Class: HumanMadeObject
- Relationship: productionInfluencedBy
SPARQL
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
PREFIX sci: <http://www.ics.forth.gr/isl/CRMsci/>
SELECT DISTINCT ?object
WHERE {
{
?object crm:P108i_was_produced_by/(crm:P9_consists_of|crm:P9i_forms_part_of)*/crm:P15_was_influenced_by $current .
} UNION {
$current crm:P15i_influenced/(crm:P9_consists_of|crm:P9i_forms_part_of)*/crm:P108_has_produced ?object .
}
$current a crm:E53_Place .
}