when I sent a post with {"username":"blah"} as the payload I need a response of
{
"title": /.*@blah.*/i,
"$or": [
{
"body": /.*@blah.*/i
}
]
}
But I get
{
"title": "/.*@blah.*/i",
"$or": [
{
"body": "/.*@blah.*/i"
}
]
}
which won't work as a query.