query-19e6e64157bc481c90a90f768b9984ca

rq turtle/ttl

Give me all accepted NFDI consortia that have a Twitter-Account, ordered by number of followers!

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  ?p ?pLabel ?twitteraccount ?follower
WHERE 
{
  ?p wdt:P31 wd:Q98270496 .
  OPTIONAL { ?p wdt:P8687 ?follower }
  ?p wdt:P2002 ?twitteraccount .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY DESC(?follower)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?follower"):::projected v2("?p"):::projected v3("?twitteraccount"):::projected c6(["bd:serviceParam"]):::iri c8(["de,en"]):::literal c2(["wd:Q98270496"]):::iri v2 --"wdt:P31"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P8687".-> v1 end v2 --"wdt:P2002"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end