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
The interface should enable user to do more powerful queries, order results, and find specific resources more easily.
Prisma could be a good inspiration in what to accomplish:
const results = await prisma.post.findMany({ skip: 200, take: 20, where: { email: { contains: 'Prisma', }, }, orderBy: { title: 'desc', }, })
The text was updated successfully, but these errors were encountered:
As for the operators = they should correspond to sparql boolean FILTER functions, e.g. regex, contains, lang, is.
regex
contains
lang
is
Alternatively, there could be a filter definition that would translate directly to SPARQL, e.g.:
filter
{ where: { someNumber: { filter: "? > 10", }, }, }
Sorry, something went wrong.
Partially resolved by #65.
Ordering is out of scope and not really aligned with the Linked Data concepts supported by LDkit. Closing.
No branches or pull requests
The interface should enable user to do more powerful queries, order results, and find specific resources more easily.
Prisma could be a good inspiration in what to accomplish:
The text was updated successfully, but these errors were encountered: