How can I match a full string in FaunaDB using ContainsStrRegex?
I’m trying to match a full string of digits using the following expression in Fauna Query Language: q.ContainsStrRegex("123", "^\d*$") This returns false. Just "\d*$" seems to work so I would imagine there’s a different -1th match pattern. What do I need to do? >Solution : Your host language, which looks like JavaScript, is doing string… Read More How can I match a full string in FaunaDB using ContainsStrRegex?