query-20ec433ffa7a82ac9762acc74f9a919e

rq turtle/ttl

Give me all members that are also (co-)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 DISTINCT ?w ?wLabel ?p ?pLabel
WHERE 
{
    ?w wdt:P463 wd:Q105757481 .
  ?p wdt:P31 wd:Q98270496 . 
  ?p wdt:P1416 ?w .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY ASC(?wLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?p"):::projected v2("?w"):::projected v1("?wLabel"):::projected c7(["bd:serviceParam"]):::iri c2(["wd:Q105757481"]):::iri c9(["de,en"]):::literal c4(["wd:Q98270496"]):::iri v2 --"wdt:P463"--> c2 v3 --"wdt:P31"--> c4 v3 --"wdt:P1416"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end