query-9b873fb4bb333ce93567b3f55116c416

rq turtle/ttl

Finding MeSH identifiers that are placed on creative works

SELECT ?item ?itemLabel WHERE {?item wdt:P486 [ ]; wdt:P31 ?type. ?type wdt:P279* wd:Q17537576

    }

LIMIT 5

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#Finding MeSH identifiers that are placed on creative works

SELECT ?item ?itemLabel
  WHERE {?item wdt:P486 [ ];
               wdt:P31 ?type.
        ?type wdt:P279* wd:Q17537576

        }
LIMIT 5

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?type") a1((" ")) c4(["wd:Q17537576"]):::iri v1 --"wdt:P486"--> a1 v1 --"wdt:P31"--> v2 v2 --"wdt:P279"--> c4