@@ -8,20 +8,20 @@ public class Query {
8
8
buildQueryWhere(attribute, is: "notEqual", to: value)
9
9
}
10
10
11
- public static func lesser (_ attribute: String, value: Any) -> String {
12
- buildQueryWhere(attribute, is: "lesser ", to: value)
11
+ public static func lessThan (_ attribute: String, value: Any) -> String {
12
+ buildQueryWhere(attribute, is: "lessThan ", to: value)
13
13
}
14
14
15
- public static func lesserEqual (attribute: String, value: Any) -> String {
16
- buildQueryWhere(attribute, is: "lesserEqual ", to: value)
15
+ public static func lessThanEqual (attribute: String, value: Any) -> String {
16
+ buildQueryWhere(attribute, is: "lessThanEqual ", to: value)
17
17
}
18
18
19
- public static func greater (_ attribute: String, value: Any) -> String {
20
- buildQueryWhere(attribute, is: "greater ", to: value)
19
+ public static func greaterThan (_ attribute: String, value: Any) -> String {
20
+ buildQueryWhere(attribute, is: "greaterThan ", to: value)
21
21
}
22
22
23
- public static func greaterEqual (_ attribute: String, value: Any) -> String {
24
- buildQueryWhere(attribute, is: "greaterEqual ", to: value)
23
+ public static func greaterThanEqual (_ attribute: String, value: Any) -> String {
24
+ buildQueryWhere(attribute, is: "greaterThanEqual ", to: value)
25
25
}
26
26
27
27
public static func search(_ attribute: String, value: String) -> String {
0 commit comments