query-90b9c2545fe3578f389392ea22c71c69

rq turtle/ttl

日本の終了日のない会社または企業で法人番号が付与されていないもの

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 ?itemLabel WHERE {
  VALUES ?organizationType {
    wd:Q783794
    wd:Q4830453
  }
  ?item wdt:P31 ?organizationType;
    wdt:P17 wd:Q17.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
  MINUS { ?item wdt:P3225 _:b6. }
  MINUS { ?item wdt:P576 _:b7. }
  MINUS { ?item wdt:P31 wd:Q55097243 }
}
ORDER BY (?item)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?organizationType") a1((" ")) a2((" ")) c3(["wd:Q17"]):::iri c10(["wd:Q55097243"]):::iri c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;"]):::literal bind0[/VALUES ?organizationType/] bind0-->v2 bind00(["wd:Q783794"]) bind00 --> bind0 bind01(["wd:Q4830453"]) bind01 --> bind0 v1 --"wdt:P31"--> v2 v1 --"wdt:P17"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P3225"--> a1 end subgraph minus2["MINUS"] style minus2 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P576"--> a2 end subgraph minus3["MINUS"] style minus3 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> c10 end