query-505e8424c34f1a882c80df5175cd1f23

rq turtle/ttl

Number of participants

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#>
SELECT 
  ?participants

  ?event ?eventLabel
  (CONCAT("#scientificevent/", SUBSTR(STR(?event), 32)) AS ?eventUrl)
  ?eventDescription
WHERE {
  ?event wdt:P31 / wdt:P279* wd:Q52260246 ;
         wdt:P1132 ?participants .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?participants)
LIMIT 500

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?event"):::projected v3("?eventUrl") v1("?participants"):::projected a1((" ")) c6(["bd:serviceParam"]):::iri c3(["wd:Q52260246"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P1132"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind0[/"concat('#scientificevent/',substring(str(?event),'32^^xsd:integer'))"/] v2 --o bind0 bind0 --as--o v3