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
mongoid
and
or
all_of
any_of
:field.in => [1, 2, 3]
field: { '$in' => [1, 2, 3] }
field :type
belongs_to_one
belongs_to_many
To backport to MongoDB Mongoid:
$comment
:mongo1x
Punt on these, see if MongoDB team fixes them:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
mongoid
is not loaded at the same time.and
andor
operators to a gem. Require usage ofall_of
andany_of
instead.:field.in => [1, 2, 3]
query syntax to a gem. Require usage offield: { '$in' => [1, 2, 3] }
instead.field :type
declarations.belongs_to_one
,belongs_to_many
). Ability to store foreign keys on either or both sides of any association.To backport to MongoDB Mongoid:
$comment
in expression matcher.:mongo1x
references and older server version references (2.6, etc.)Punt on these, see if MongoDB team fixes them:
The text was updated successfully, but these errors were encountered: