I am able to query values without regard to case, but I would like to to query keys insensitively, so users can type them in all lower case.
This doesn't work, because it is not valid JSON:
{
/^lastName$/i: "Jones"
}
Is there a strategy I could use for this, besides just making a new collection of keys as values?