query-e2681f0975c5ce627e05926663266ccd

rq turtle/ttl

Spouse: divorced/? statements. Here's a query: (Q11169)question mark (P26)spouse and (Q93190)divorce (P26)spouse Hello! I noticed you've added a number

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 ?x ?xLabel ?v ?vLabel WHERE {
  VALUES ?v { wd:Q93190 wd:Q11169 }
  ?x  wdt:P26 ?v.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?v"):::projected v2("?x"):::projected c3(["bd:serviceParam"]):::iri c5(["en"]):::literal bind0[/VALUES ?v/] bind0-->v1 bind00(["wd:Q93190"]) bind00 --> bind0 bind01(["wd:Q11169"]) bind01 --> bind0 v2 --"wdt:P26"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end