query-fc82ac4207a9b05fec96a449d453fc31
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 ?article WHERE {
?item ^schema:about ?article .
?article wikibase:badge wd:Q17437796; schema:isPartOf <https://fr.wikipedia.org/> .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
limit 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?article"):::projected
v2("?item"):::projected
c7(["bd:serviceParam"]):::iri
c5([https://fr.wikipedia.org/]):::iri
c9(["en"]):::literal
c3(["wd:Q17437796"]):::iri
v1 --"schema:about"--> v2
v1 --"wikibase:badge"--> c3
v1 --"schema:isPartOf"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end