query-760d050d5fb6a44ea878ca4f3479f655

rq turtle/ttl

What artists have IIIF links in Wikidata?

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?creator ?creatorLabel ?creatorDescription (COUNT(?art) AS ?count) WHERE {
?art wdt:P6108 []; wdt:P170 ?creator.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} GROUP BY ?creator ?creatorLabel ?creatorDescription
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?art"):::projected v4("?count") v3("?creator"):::projected a1((" ")) c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P6108"--> a1 v2 --"wdt:P170"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end bind1[/"count(?art)"/] v2 --o bind1 bind1 --as--o v4