query-b449b62247751ad34e4c96e28b626f9b
]reply[16:18, 9 November 2017 (UTC)) talk (VIGNERONCdlt, Thank you for notice :) I've fixed all of them:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?q ?qLabel WHERE {
?q wdt:P460 ?q ;
rdfs:label ?l.
Filter(lang(?l) = 'ja')
SERVICE wikibase:label { bd:serviceParam wikibase:language "ja" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?l")
v2("?q"):::projected
a1((" "))
c5(["bd:serviceParam"]):::iri
c1(["ja"]):::literal
f0[["?l = 'ja'"]]
f0 --> v1
f1[["sameterm(?q,)"]]
f1 --> v2
f1 --> a1
v2 --"wdt:P460"--> a1
v2 --"rdfs:label"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c1
end