query-e4a65f0413fcfa61973a70dfdb58fdf5
Return an image grid of winners of FSF free software award with their notable work displayed under the image
Use at
- https://query.wikidata.org/sparql
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 ?personLabel ?image ?notableLabel
WHERE {
?person wdt:P166 wd:Q1389573 .
?person wdt:P18 ?image .
?person wdt:P800 ?notable
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?image"):::projected
v3("?notable")
v1("?person")
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
c2(["wd:Q1389573"]):::iri
v1 --"wdt:P166"--> c2
v1 --"wdt:P18"--> v2
v1 --"wdt:P800"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end