query-248ea522657777c83e4cdf0a1012ef9f

rq turtle/ttl

187: V & W Conflicts Between LettersNow I want to investigate the conflicts where there are >1 letters: 1563: I & W

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?x ?xLabel {
  ?x wdt:P6366 ?mag
  filter (exists {?x wdt:P31/wdt:P279* wd:Q43229}
         && exists {?x wdt:P31/wdt:P279* wd:Q17537576})
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  # ?x rdfs:label ?xLabel filter(lang(?xLabel)="en")
} limit 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?mag") v1("?x"):::projected a1((" ")) a2((" ")) c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4(["wd:Q17537576"]):::iri c3(["wd:Q43229"]):::iri f0[[" "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P31"--> e0a1 e0a1 --"wdt:P279"--> e0c3 e0v1("?x"):::projected e0a1((" ")):::projected e0c3(["wd:Q43229"]):::iri end f0--EXISTS--> f0e0 subgraph f0e1["Exists Clause"] e1v1 --"wdt:P31"--> e1a1 e1a1 --"wdt:P279"--> e1c3 e1v1("?x"):::projected e1a1((" ")):::projected e1c3(["wd:Q17537576"]):::iri end f0--EXISTS--> f0e1 f0 --> v1 f0 --> c1 f0 --> a1 f0 --> c2 f0 --> c3 f0 --> a2 f0 --> c4 v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P31"--> a2 a2 --"wdt:P279"--> c4 v1 --"wdt:P6366"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end