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
On the bottom of https://github.com/jclausen/cbmongodb/wiki/2C.-Loading-and-Querying-Documents
it says Valid operators currently include "=","!=","<",">",">=","<=","IN" and "Exists"
Valid operators currently include "=","!=","<",">",">=","<=","IN" and "Exists"
which should map IN to $in but I dont see that working anywhere.
ActiveEntity shows the valid operators are:
this.set_operators([ '=', '!=', '>=', '<=', '<>', 'like' ]);
Is there a way to use IN or is that a documentation error?
The text was updated successfully, but these errors were encountered:
I added IN to the set_operators and then in ActiveEntity.cfc where() added a case for it. Works now.
Sorry, something went wrong.
Can you pull request your changes? I believe these were intended to be supported at one point, but were backed out due to query errors.
@jclausen Sure.. just issued #26
No branches or pull requests
On the bottom of
https://github.com/jclausen/cbmongodb/wiki/2C.-Loading-and-Querying-Documents
it says
Valid operators currently include "=","!=","<",">",">=","<=","IN" and "Exists"
which should map IN to $in but I dont see that working anywhere.
ActiveEntity shows the valid operators are:
Is there a way to use IN or is that a documentation error?
The text was updated successfully, but these errors were encountered: