query-294eae379479265f3293c9d4ae7f7a72

rq turtle/ttl

Image grid of logo images for projects of the apache software foundation

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:ImageGrid
SELECT ?project ?projectLabel ?image
WHERE 
{
  ?project wdt:P178 wd:Q489709.
  ?project wdt:P154 ?image
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?image"):::projected v1("?project"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q489709"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P178"--> c2 v1 --"wdt:P154"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end