We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I saw that there is a way to add LIMIT etc. to a view like this:
view.ptr.addOut(ns.view.projection, projection => { const order = projection.blankNode() .addOut(ns.view.dimension, view.dimensions[0].ptr) .addOut(ns.view.direction, ns.view.Ascending) projection.addList(ns.view.orderBy, order) projection.addOut(ns.view.limit, pageSize) projection.addOut(ns.view.offset, offset) })
Conveniently found this here 😁 https://github.com/zazuko/cube-creator/blob/a32a90ff93b2c6c1c5ab8fd110a9032a8d179670/apis/core/lib/domain/observations/lib/index.ts#L44-L52
Could those be added as methods to a view, similar to view.addFilter()?
view.addFilter()
The text was updated successfully, but these errors were encountered:
Support for offset and limit was added in #51
Sorry, something went wrong.
@herrstucki do you need ORDER right now, or can we push this for later?
Not needed for our use case right now but I‘d say that offset/limit are not very useful without it.
No branches or pull requests
I saw that there is a way to add LIMIT etc. to a view like this:
Conveniently found this here 😁 https://github.com/zazuko/cube-creator/blob/a32a90ff93b2c6c1c5ab8fd110a9032a8d179670/apis/core/lib/domain/observations/lib/index.ts#L44-L52
Could those be added as methods to a view, similar to
view.addFilter()
?The text was updated successfully, but these errors were encountered: