query-6370d177be7bbb11cda9822aae5dbec9
with value 71A1, but there are none: (P1257)depicts Iconclass notation Hi Christoph Lassmann. This query will find all items with As it's iconclass, you might want to check for strings that start with "71A1" (same result though):
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?value
{
?item wdt:P1257 ?value .
FILTER( strstarts(?value, "71A1") )
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?value"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal
f0[["starts-with(?value,'71A1')"]]
f0 --> v1
v2 --"wdt:P1257"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end