query-c6cd766d5e54c46014191dde489b192d

rq turtle/ttl

Queries

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 ?item ?itemLabel ?sport ?sportLabel WHERE {
  ?item wdt:P641 ?sport . 
  MINUS { ?sport (wdt:P279)* wd:Q349 . }
  MINUS { ?sport (wdt:P279)* wd:Q20037067 . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
} ORDER BY ?sportLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v3("?sport"):::projected v1("?sportLabel"):::projected c4(["wd:Q20037067"]):::iri c6(["bd:serviceParam"]):::iri c3(["wd:Q349"]):::iri c8(["en"]):::literal v2 --"wdt:P641"--> v3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P279"--> c3 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P279"--> c4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end