We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MongoDB is case-sensitive. Since CFML is not a case-sensitive language it can cause some unexpected and frustrating results.
When creating the object in CFML enclose your object keys in quotes to ensure they are not converted to uppercase by the CFML engine.
myObject['foo'] = 'bar';