did you get those results when running only this subquery? Afaik, the default limit of the Lucene text query is at most 10 000 documents - and I don't think that the outer LIMIT would make it to the Lucene request

On 18.10.22 13:35, Mikael Pesonen wrote:

I have a bigger query that starts with inner select

 { SELECT ?s ?score WHERE {
    (?s ?score) text:query (skos:prefLabel skos:altLabel "\"xx yy\"" "lang:en" ) .
    } order by desc(?score) offset 0 limit 1000 }

There are about 10000 results. limit 1000 returns ~560 and limit 100 ~75 results. How do I page results correctly?

Reply via email to