query-eec8fe4b2bea099f248cf65be4524617

rq turtle/ttl

title:Indian participants at the 2020 Summer Olympics SELECT ?item ?linkcount ?itemLabel ?genderLabel ?sportsLabel ?eventLabel ?olympedia_people_id WHERE { ?item wdt:P31 wd:Q5. # <<<<<< Item = Human ?item wdt:P1532 wd:Q668. # <<<<<< Country for sports = India ?item wdt:P1344 ?event. ?event ((wdt:P31/wdt:P279)?/wdt:P361) wd:Q181278. OPTIONAL { ?item wdt:P21 ?gender } OPTIONAL { ?item wdt:P641 ?sports } OPTIONAL {?item wdt:P8286 ?olympedia_people_id .} OPTIONAL { ?item wikibase:sitelinks ?linkcount.} #count sitelinks

MINUS{?item wdt:P18 [] .}

SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # for generating label } GROUP BY ?item ?statements ?linkcount ?itemLabel ?genderLabel ?sportsLabel ?eventLabel ?olympedia_people_id ORDER BY DESC(?linkcount)

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:Indian participants at the 2020 Summer Olympics
SELECT ?item ?linkcount ?itemLabel ?genderLabel ?sportsLabel ?eventLabel ?olympedia_people_id
WHERE {
?item wdt:P31 wd:Q5.                   # <<<<<< Item = Human
 ?item wdt:P1532 wd:Q668.                   # <<<<<< Country for sports  = India
  ?item wdt:P1344 ?event.
 ?event ((wdt:P31/wdt:P279*)?/wdt:P361*) wd:Q181278.
   OPTIONAL { ?item wdt:P21 ?gender }
   OPTIONAL { ?item wdt:P641 ?sports }
  OPTIONAL {?item wdt:P8286 ?olympedia_people_id .}
  OPTIONAL { ?item wikibase:sitelinks ?linkcount.}  #count sitelinks
#  MINUS{?item wdt:P18 [] .}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }    # for generating label
}
GROUP BY ?item ?statements ?linkcount ?itemLabel ?genderLabel ?sportsLabel ?eventLabel ?olympedia_people_id
ORDER BY DESC(?linkcount)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?event") v4("?gender") v2("?item"):::projected v1("?linkcount"):::projected v6("?olympedia_people_id"):::projected v5("?sports") a1((" ")) a2((" ")) c8(["wd:Q181278"]):::iri c14(["bd:serviceParam"]):::iri c4(["wd:Q668"]):::iri c2(["wd:Q5"]):::iri c16(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P1532"--> c4 v2 --"wdt:P1344"--> v3 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v3 --"wdt:P31"--> a2 a2 --"wdt:P279"--> a1 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; end union0r <== or ==> union0l end a1 --"wdt:P361"--> c8 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P21".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P641".-> v5 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P8286".-> v6 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v2 -."wikibase:sitelinks".-> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c14 --"wikibase:language"--> c16 end