query-c7a205f87da988ae95e5b8b92d4057bd

rq turtle/ttl

TODO

Use at

PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?hewiki_sitelink ?he_label {
  ?hewiki_sitelink schema:about ?item; schema:isPartOf <https://he.wikipedia.org/> .
  ?item rdfs:label ?he_label .
  FILTER(LANG(?he_label) = 'he') .

  FILTER(false = (SUBSTR(STR(?hewiki_sitelink), 31) = ENCODE_FOR_URI(STR(?he_label))) ) .
} LIMIT 5000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?he_label"):::projected v1("?hewiki_sitelink"):::projected v3("?item"):::projected c6([https://he.wikipedia.org/]):::iri f0[["'false^^xsd:boolean' = substring(str(?hewiki_sitelink),'31^^xsd:integer') = encode-for-uri(str(?he_label))"]] f0 --> v1 f0 --> v2 f1[["?he_label = 'he'"]] f1 --> v2 v1 --"schema:about"--> v3 v1 --"schema:isPartOf"--> c6 v3 --"rdfs:label"--> v2