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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Is many to many possible with this? What the syntax would be?
The text was updated successfully, but these errors were encountered:
There's currently no syntactic support for it in this addon. Been thinking about syntaxes as the following:
db.version(1).stores({ genres: 'id, name', bands: 'id, name, *genreIds -> genres.id', albums: 'id, name, bandId -> bands.id, year' });
To load, use db.bands.with({genres: "genreIds"})
db.bands.with({genres: "genreIds"})
If so, it could utilize multiEntry index for this. Pull requests are welcome! /D
Sorry, something went wrong.
No branches or pull requests
Is many to many possible with this? What the syntax would be?
The text was updated successfully, but these errors were encountered: