query-2cd050209d9168df873ec5e16008a39a

rq turtle/ttl

Estrapolazione classi

Use at

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#>
SELECT ?s ?desc
WHERE {
  ?s wdt:P279+ wd:Q43229 .
  OPTIONAL {?s rdfs:label ?desc filter (lang(?desc) = "en").
}
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?desc"):::projected v2("?s"):::projected c3(["wd:Q43229"]):::iri v2 --"wdt:P279"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."rdfs:label".-> v1 end