query-4df981bc0c1d6d6f8e69727d49d0a431
Queries. The current structure can be visualized using the following query: (P355)has subsidiary and (P749)parent organization have a lot of organizations within them. Their structure needs to be maintained using (Q4158548)Department of Space and (Q229058)Indian Space Research Organisation
Use at
- https://query.wikidata.org/sparql
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#>
#defaultView:Graph
SELECT ?item ?itemLabel ?linkTo {
wd:Q4158548 wdt:P355* ?item
OPTIONAL { ?item wdt:P355 ?linkTo }
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("?item"):::projected
v2("?linkTo"):::projected
c1(["wd:Q4158548"]):::iri
c4(["bd:serviceParam"]):::iri
c6(["en"]):::literal
c1 --"wdt:P355"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P355".-> v2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end