query-ac5b6783fe3ac1a2aa4d05e10f454d9a
item has no statements, search term is found in the item label SELECT ?item ?itemLabel WHERE { ?item wikibase:statements "0"^^xsd:integer. ?item rdfs:label ?itemLabel. filter(contains(?itemLabel, "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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#item has no statements, search term is found in the item label
SELECT ?item ?itemLabel WHERE {
?item wikibase:statements "0"^^xsd:integer.
?item rdfs:label ?itemLabel.
filter(contains(?itemLabel, "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("?itemLabel"):::projected
c3(["0^^xsd:integer"]):::literal
f0[["contains(?itemLabel,'aero')"]]
f0 --> v1
v2 --"wikibase:statements"--> c3
v2 --"rdfs:label"--> v1