query-79ab2670935b5aca74d40e06961f09db
All P486 identifiers starting with D SELECT ?item ?mesh WHERE {?item wdt:P486 ?mesh.
FILTER(strstarts(?mesh, 'D'))
}
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#All P486 identifiers starting with D
SELECT ?item ?mesh
WHERE {?item wdt:P486 ?mesh.
FILTER(strstarts(?mesh, 'D'))
}
Query found at
- https://www.wikidata.org/wiki/Wikidata:ScienceSource_project/MeSH_and_cleanup_dashboard
- https://www.wikidata.org/wiki/Wikidata:ScienceSource_project/MeSH_queries
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?mesh"):::projected
f0[["starts-with(?mesh,'D')"]]
f0 --> v1
v2 --"wdt:P486"--> v1