query-477048d1075946aaae95500afacb2bee
Restrict results to entitiesIs there an elegant way to ask for just the entities? This query...
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?related WHERE {
wd:Q42 ?prop ?related
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?prop")
v2("?related"):::projected
c1(["wd:Q42"]):::iri
c1 -->v1--> v2