query-4eef939b5960d965743823b25ef7f42e
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
:SELECT ?item ?label ?description
:WHERE
:{
: ?item wdt:P31/wdt:P279* wd:Q33506;
: schema:description ?description;
: rdfs:label ?label.
: FILTER(LANG(?label) = "en").
: FILTER(CONTAINS(?description, '"')).
: ?item wdt:P17 wd:Q145.
:}
: