query-bce8ab50decf2aba962b81b5b95cac5b

rq turtle/ttl

Image grid of logo images of software projects affiliated with Software in the Public Interest

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:ImageGrid
SELECT ?item ?label ?image WHERE {
  ?item wdt:P1416 wd:Q685777.
  ?item wdt:P154 ?image
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" . 
    ?item rdfs:label ?label
  }
}

Query found at

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