query-ace526af766488dc1772b1605250b0ed

rq turtle/ttl

Airon90

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 ?line ?lineLabel  ?part_of_line ?part_of_lineLabel
WHERE
{
  ?line wdt:P31 wd:Q15795637 .
  ?line wdt:P527 ?part_of_line .
  FILTER NOT EXISTS { ?part_of_line wdt:P361 ?line . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?line"):::projected v1("?part_of_line"):::projected c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q15795637"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P361"--> e0v2 e0v2("?line"):::projected e0v1("?part_of_line"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> v2 v1 --"wdt:P361"--> v2 v2 --"wdt:P31"--> c3 v2 --"wdt:P527"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end