query-31382066ebda8f5638a1ebd19ca4eee6
Items at byte-lengthIs it possible to look for items by byte-length? I want all items that have a sitelink to the nl.wp and with a maximum length of 200 bytes. Here is the part of nl.wp:
Use at
- https://query.wikidata.org/sparql
PREFIX schema: <http://schema.org/>
SELECT ?item WHERE {
?sitelink schema:about ?item.
?sitelink schema:isPartOf <https://nl.wikipedia.org/>.
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sitelink")
c3([https://nl.wikipedia.org/]):::iri
v1 --"schema:about"--> v2
v1 --"schema:isPartOf"--> c3