query-6be2335392f8472d6667911069e04135
Anda Bordieanu
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX en: <https://en.wikipedia.org/wiki/>
select ?item ?itemLabel ?lang ?langLabel ?otherwiki ?group {
?enwiki schema:about ?item .
?otherwiki schema:about ?item ;
schema:isPartOf/wikibase:wikiGroup ?group .
?otherwiki schema:inLanguage ?langcode .
?lang wdt:P305 ?langcode .
values ?enwiki {
<https://en.wikipedia.org/wiki/Paris>
en:London
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v7("?enwiki")
v4("?group"):::projected
v2("?item"):::projected
v6("?lang"):::projected
v5("?langcode")
v3("?otherwiki"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v7 --"schema:about"--> v2
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> a1
a1 --"wikibase:wikiGroup"--> v4
v3 --"schema:inLanguage"--> v5
v6 --"wdt:P305"--> v5
bind0[/VALUES ?enwiki/]
bind0-->v7
bind00([https://en.wikipedia.org/wiki/Paris])
bind00 --> bind0
bind01([https://en.wikipedia.org/wiki/London])
bind01 --> bind0
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end