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
It would be useful to get query_filter working on import documents such as XML or CSV splits.
query_filter
This can be realized by executing reverse queries prior to ingest for filtering out the results.
Example:
const query_filter = '{"jsonPropertyValueQuery": {"property": ["activeCustomer"], "value": ["Y"], "options": ["lang=en"]}}' const csv_json_doc = xdmp.toJSON({'activeCustomer':"Y"}); cts.contains( xdmp.toJSON(xdmp.unquote(query_filter)).root, cts.reverseQuery(csv_json_doc) );
The text was updated successfully, but these errors were encountered:
abika5
No branches or pull requests
It would be useful to get
query_filter
working on import documents such as XML or CSV splits.This can be realized by executing reverse queries prior to ingest for filtering out the results.
Example:
The text was updated successfully, but these errors were encountered: