Commit 15faf6bd by Dan Krause

Merge pull request #118 from pistatium/feature/regex_support

Suport regex query-constrains
parents 9c5bd490 40f24071
...@@ -65,7 +65,7 @@ class QueryManager(object): ...@@ -65,7 +65,7 @@ class QueryManager(object):
class Queryset(object): class Queryset(object):
OPERATORS = [ OPERATORS = [
'lt', 'lte', 'gt', 'gte', 'ne', 'in', 'nin', 'exists', 'select', 'dontSelect', 'all', 'relatedTo', 'nearSphere' 'lt', 'lte', 'gt', 'gte', 'ne', 'in', 'nin', 'exists', 'select', 'dontSelect', 'all', 'regex', 'relatedTo', 'nearSphere'
] ]
@staticmethod @staticmethod
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment