query-29666fa082fb5204974b25a84eab0676
item has no statements, search term is found in the item description SELECT ?item ?itemDescription WHERE { ?item wikibase:statements "0"^^xsd:integer. ?item schema:description ?itemDescription . filter(contains(?itemDescription, "aero")) # <<<<<<<This is where you set the search term } limit 500
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
#item has no statements, search term is found in the item description
SELECT ?item ?itemDescription WHERE {
?item wikibase:statements "0"^^xsd:integer.
?item schema:description ?itemDescription .
filter(contains(?itemDescription, "aero")) # <<<<<<<This is where you set the search term
}
limit 500
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemDescription"):::projected
c3(["0^^xsd:integer"]):::literal
f0[["contains(?itemDescription,'aero')"]]
f0 --> v1
v2 --"wikibase:statements"--> c3
v2 --"schema:description"--> v1