query-99c8521437a26ed6ee3a78db085a2bf5

rq turtle/ttl

Famous nonbinary people

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#>
#title:Famous nonbinary people 
#defaultView:ImageGrid
SELECT 
  ?item ?itemLabel 
  (SAMPLE(?pic) as ?sample_pic) 
  ?sitelinks
WHERE 
{
   ?item wdt:P18 ?pic . 
  ?item wikibase:sitelinks ?sitelinks . 
  ?item wdt:P21 wd:Q48270.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Helps get the label in your language, if not, then en language
}
GROUP BY
  ?item ?itemLabel 
  ?sitelinks
ORDER BY 
  DESC(?sitelinks)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v3("?pic"):::projected v4("?sample_pic") v1("?sitelinks"):::projected c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4(["wd:Q48270"]):::iri v2 --"wdt:P18"--> v3 v2 --"wikibase:sitelinks"--> v1 v2 --"wdt:P21"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"sample(?pic)"/] v3 --o bind1 bind1 --as--o v4