query-5e2571926eb81a9e71400f79ba23c426

rq turtle/ttl

TODO

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 ?item ?itemLabel
WHERE 
{ ?item wdt:P31 wd:Q13393265 .                  #instance of: basketball team
  ?item wdt:P31 wd:Q2367225 .                   #instance of: university and college sports club
  optional {?item wdt:P2094 wd:Q2887217 .}      #competition class: women's basketball 
  ?item wdt:P641 wd:Q5372 .                     #sport: basketball
  minus {?item wdt:P2094 [] .}                   #SHOW ONLY WHERE competition class: women's basketball IS MISSING 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # get labels
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected a1((" ")) c5(["wd:Q2887217"]):::iri c9(["bd:serviceParam"]):::iri c2(["wd:Q13393265"]):::iri c7(["wd:Q5372"]):::iri c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q2367225"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P31"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P2094".-> c5 end v1 --"wdt:P641"--> c7 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P2094"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end