query-5af989d2ba68762b7fa64021e4ba86b7
instance of any subclass of work of art
SELECT ?work ?workLabel WHERE { ?work wdt:P31/wdt:P279* wd:Q838948. # one P31 and any number of P279 between the item and the class SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } } LIMIT 42
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# instance of any subclass of work of art
SELECT ?work ?workLabel
WHERE
{
?work wdt:P31/wdt:P279* wd:Q838948. # one P31 and any number of P279 between the item and the class
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
} LIMIT 42
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?work"):::projected
a1((" "))
c3(["wd:Q838948"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end