query-64aaf854264372a2f5a6f5cd96143d84
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
SELECT ?item ?article ?badge
WHERE {
?item wikibase:statements 0 ; wikibase:sitelinks 1 .
?article schema:about ?item ; schema:isPartOf <https://el.wikipedia.org/> .
OPTIONAL { ?article wikibase:badge ?badge } .
}
ORDER BY DESC(?badge)
Query found at
- https://www.wikidata.org/wiki/User:Ep%C3%ACdosis/Queries
- https://www.wikidata.org/wiki/User:Ep%C3%ACdosis/sandbox
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v1("?badge"):::projected
v2("?item"):::projected
c2(["0^^xsd:integer"]):::literal
c4(["1^^xsd:integer"]):::literal
c7([https://el.wikipedia.org/]):::iri
v2 --"wikibase:statements"--> c2
v2 --"wikibase:sitelinks"--> c4
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> c7
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wikibase:badge".-> v1
end