query-16a7a11ddcdb2209b185cff61bbfc49a

rq turtle/ttl

Splitting pairs

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?a ?aLabel ?b ?bLabel
WHERE {
  ?a wdt:P1696 ?b .
  ?b wdt:P1696 ?a .
  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("?a"):::projected v2("?b"):::projected c3(["bd:serviceParam"]):::iri c5(["en"]):::literal v1 --"wdt:P1696"--> v2 v2 --"wdt:P1696"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end