Commit 6b34a2ba authored by Madhusudan.C.S's avatar Madhusudan.C.S

Selector operator strings should all be lowercase to be consistent with other operators.

parent 9162cde8
...@@ -72,8 +72,8 @@ const ( ...@@ -72,8 +72,8 @@ const (
NotEqualsOperator Operator = "!=" NotEqualsOperator Operator = "!="
NotInOperator Operator = "notin" NotInOperator Operator = "notin"
ExistsOperator Operator = "exists" ExistsOperator Operator = "exists"
GreaterThanOperator Operator = "Gt" GreaterThanOperator Operator = "gt"
LessThanOperator Operator = "Lt" LessThanOperator Operator = "lt"
) )
func NewSelector() Selector { func NewSelector() Selector {
......
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