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 tried to do the following in the constructor of the index but did not work
this.map = `map(xxx);map(yyy);`;
Just one map like below works:
this.map = `map(xxx)`;
This multi-map index supported by this library at all?
The text was updated successfully, but these errors were encountered:
Worked it out there is a AbstractJavaScriptIndexCreationTask which would allow for multi-map index like below
AbstractJavaScriptIndexCreationTask
this.maps = new Set(['map(xxx)','map(yyy)']);
Could you please add more details about index creation to the readme and the online documentation please?
Sorry, something went wrong.
Try looking here: https://ravendb.net/docs/article-page/5.0/java/indexes/multi-map-indexes The item you want is AbstractMultiMapIndexCreationTask,
AbstractMultiMapIndexCreationTask
Here is what this looks like:
ravendb-nodejs-client/test/Ported/Queries/HighlightsTest.ts
Line 30 in 93b33ff
No branches or pull requests
I tried to do the following in the constructor of the index but did not work
Just one map like below works:
This multi-map index supported by this library at all?
The text was updated successfully, but these errors were encountered: