Stardog.js limit and offset, when turned on are not giving the results for certain lucene searches. Same query when run in studio, i get results and when i remove the limit from javascript, i get results. Is this a bug?
My guess is that you are missing the accept parameter of query.execute. The method signature is actually (conn, database, query, accept, params), though it's very easy to skip over accept and go straight to params.
If you set the limit via query.execute(conn, 'myDb', myQuery, undefined, {limit: myLimit}) (passing undefined for accept), do you see results?