query-fef77eeee2a5f9458ba8677dddb99616
TODO
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 ?linked_from ?linked_fromLabel ?p856 {
?linked_from wdt:P856 ?p856 .
FILTER(CONTAINS(STR(?p856),'itch.io'))
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?linked_fromLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?linked_from"):::projected
v1("?linked_fromLabel"):::projected
v2("?p856"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["contains(str(?p856),'itch.io')"]]
f0 --> v2
v3 --"wdt:P856"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end