Provenance SPARQLer

A platform for clarifying and commenting on SPARQL queries at the new Getty Provenance endpoint. This site is not affiliated with the Getty Research Institute.

Artwork in which the Artist is linked to ULAN (0004)

This query returns artists with ULAN links.

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```