query-72b8ce8de029edf194b93f3a3f53cf0a
item has no statements, search term is found in a sitelink SELECT ?item ?sitelink WHERE { ?item wikibase:statements "0"^^xsd:integer. ?article schema:about ?item . ?sitelink ^schema:name ?article . filter(contains(?sitelink, "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 a sitelink
SELECT ?item ?sitelink WHERE {
?item wikibase:statements "0"^^xsd:integer.
?article schema:about ?item .
?sitelink ^schema:name ?article .
filter(contains(?sitelink, "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;
v3("?article")
v2("?item"):::projected
v1("?sitelink"):::projected
c3(["0^^xsd:integer"]):::literal
f0[["contains(?sitelink,'aero')"]]
f0 --> v1
v2 --"wikibase:statements"--> c3
v3 --"schema:about"--> v2
v3 --"schema:name"--> v1