query-af5558e47aa1aa2f65d0cfb92dcba943
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?lang ?sitelink ?article WHERE
{
VALUES ?item {wd:Q674}
?article schema:about ?item ;
schema:inLanguage ?lang ;
schema:name ?sitelink ;
schema:isPartOf/wikibase:wikiGroup "wikipedia" .
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?item"):::projected
v3("?lang"):::projected
v4("?sitelink"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
c6(["wikipedia"]):::literal
bind0[/VALUES ?item/]
bind0-->v1
bind00(["wd:Q674"])
bind00 --> bind0
v2 --"schema:about"--> v1
v2 --"schema:inLanguage"--> v3
v2 --"schema:name"--> v4
v2 --"schema:isPartOf"--> a1
a1 --"wikibase:wikiGroup"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end