conceptInfluencedByPlace
conceptInfluencedByPlace
Return the concepts whose creation was influenced by the place.
See the related model documentation
Example
From the record for the Netherlands, the record for Dutch Golden Age Paintings would be in the response
Details
- Class Given: Place
- Returns Class: Concept
- Relationship: influencedBy
SPARQL
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
SELECT DISTINCT ?concept
WHERE {
{
$current crm:P94i_was_created_by ?activity .
} UNION {
?activity crm:P94_has_created ?concept .
}
{
?activity crm:P15_was_influenced_by $current .
} UNION {
$current crm:P15i_influenced ?activity .
}
$current a crm:E53_Place .
}