query-64aaf854264372a2f5a6f5cd96143d84

rq turtle/ttl

TODO

Use at

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

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