query-171c99bbc68c7c6911cadec2c30ea3b3
by YMS, 2016-09-26 SELECT ?item ?label (lang(?label) as ?lang) WHERE { ?item rdfs:label ?label . ?item schema:description ?label . } LIMIT 100
Use at
- https://query.wikidata.org/sparql
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#by YMS, 2016-09-26
SELECT ?item ?label (lang(?label) as ?lang) WHERE {
?item rdfs:label ?label .
?item schema:description ?label .
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?label"):::projected
v3("?lang")
v1 --"rdfs:label"--> v2
v1 --"schema:description"--> v2
bind0[/"?label"/]
v2 --o bind0
bind0 --as--o v3