query-446c168d59d69dac2554b083d33e51fe

rq turtle/ttl

Inception date of organizations related to the NDRM

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#>
#Inception date of organizations related to the NDRM
#defaultView:Table
SELECT DISTINCT ?organization ?organizationLabel ?inceptionDate {
  ?organization wdt:P31 wd:Q43229. #P31 = instance of / wd:Q43229 = organization
  ?organization wdt:P793 wd:Q623859. #P793 = significant event / wd:Q623859 = NDRM
  ?organization wdt:P571 ?inceptionDate. #P571 = inception
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],ko". }
} ORDER BY ASC(?organizationLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?inceptionDate"):::projected v2("?organization"):::projected v1("?organizationLabel"):::projected c4(["wd:Q623859"]):::iri c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,ko"]):::literal c2(["wd:Q43229"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P793"--> c4 v2 --"wdt:P571"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end