Skip to content

objectProductionInfluencedByObject

objectProductionInfluencedByObject

Return the objects whose production was influenced by the object.

See the related model documentation

Example

From the record a painting that was copied, the record for the copy would be in the response

Details

  • Class Given: HumanMadeObject
  • 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:E22_Human-Made_Object .
}