query-04ddad6cfa6875f6732d8e95b76604a2

rq turtle/ttl

Propertiesinstance of (P31)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?system ?systemLabel ?additionalTypeLabel
WHERE {
  ?system wdt:P31 wd:Q58778;
          rdfs:label ?systemLabel;
          wdt:P31 ?additionalType.
  FILTER (?additionalType != wd:Q58778)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?additionalType") v2("?system"):::projected v3("?systemLabel"):::projected c5(["bd:serviceParam"]):::iri c1(["wd:Q58778"]):::iri c7(["en"]):::literal f0[["?additionalType != 'wd:Q58778'"]] f0 --> v1 v2 --"wdt:P31"--> c1 v2 --"rdfs:label"--> v3 v2 --"wdt:P31"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end