Introduction
This query returns artists associated with artwork in the provenance data if a connection has been made to Getty Vocabularies’ ULAN database.
Query
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX la: <https://linked.art/ns/terms/>
PREFIX aat: <http://vocab.getty.edu/aat/>
PREFIX getty: <http://data.getty.edu/local/>
# SELECT DISTINCT ?artist ?artist_label ?ulan WHERE {
SELECT * WHERE {
?artwork rdf:type crm:E22_Human-Made_Object .
?artwork rdfs:label ?artwork_label .
?artwork crm:P108i_was_produced_by ?production_event .
?production_event crm:P14_carried_out_by ?artist .
?artist rdfs:label ?artist_label .
?artist skos:exactMatch ?ulan .
}
LIMIT 1000```