query-63396e9bd9758bd9888c476d7ba6050b

rq turtle/ttl

TODO מקבצים גדולים

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?label_en ?label_he ?j9u WHERE {
  SERVICE bd:slice {
    ?item wdt:P8189 ?j9u .
    bd:serviceParam bd:slice.offset 0 . # Start at item number (not to be confused with QID)
    bd:serviceParam bd:slice.limit 25000 . # List this many items
  }
  # If you need more properties add them here
  OPTIONAL { ?item rdfs:label ?label_en. FILTER(LANG(?label_en)="en") }
  OPTIONAL { ?item rdfs:label ?label_he. FILTER(LANG(?label_he)="he") }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v4("?j9u"):::projected v2("?label_en"):::projected v1("?label_he"):::projected c7(["0^^xsd:integer"]):::literal c5(["bd:serviceParam"]):::iri c9(["25000^^xsd:integer"]):::literal subgraph s1["http://www.bigdata.com/rdf#slice"] style s1 stroke-width:4px; v3 --"wdt:P8189"--> v4 c5 --"bd:slice.offset"--> c7 c5 --"bd:slice.limit"--> c9 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."rdfs:label".-> v2 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."rdfs:label".-> v1 end