query-daaf6e022bbb9ab786af8cd9032a22be
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 ?sitelink ?article WHERE
{
VALUES ?item {wd:Q674}
?article schema:about ?item ;
schema:isPartOf <https://de.wikipedia.org/> ;
schema:name ?sitelink .
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("?sitelink"):::projected
c3([https://de.wikipedia.org/]):::iri
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
bind0[/VALUES ?item/]
bind0-->v1
bind00(["wd:Q674"])
bind00 --> bind0
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c3
v2 --"schema:name"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end