query-86ffeb9d59398b578b6ea3977cf7d63b

rq turtle/ttl

Fundstelle mit anzeigenWie krieg ich bei dieser Spargel Abfrage mögliche Fundstellen für P361/P527 mitangezeigt. Ich meine den URL Link in Klartext dazu.

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 ?BLfDID ?ist_ein_e_ ?ist_ein_e_Label ?ist_Teil_von ?ist_Teil_vonLabel ?besteht_aus ?besteht_ausLabel WHERE {
  { SELECT ?item ?BLfDID WHERE { ?item (wdt:P1435/(wdt:P279*)) wd:Q17297633. } }
  ?item (wdt:P131*) wd:Q522236;
    wdt:P4244 ?BLfDID.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  OPTIONAL { ?item wdt:P31 ?ist_ein_e_. }
  OPTIONAL { ?item wdt:P361 ?ist_Teil_von. }
  OPTIONAL { ?item wdt:P527 ?besteht_aus. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?BLfDID"):::projected v5("?besteht_aus"):::projected v4("?ist_Teil_von"):::projected v3("?ist_ein_e_"):::projected v1("?item"):::projected a1((" ")) c3(["wd:Q17297633"]):::iri c5(["wd:Q522236"]):::iri c8(["bd:serviceParam"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P1435"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P131"--> c5 v1 --"wdt:P4244"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P31".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P361".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P527".-> v5 end