Skip to content

Commit

Permalink
fix: lt filter (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferhatelmas authored Oct 14, 2022
1 parent 7f10ca4 commit 6187cc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static Map<String, Object> greaterThanEquals(

public static Map<String, Object> lessThan(
@NotNull String fieldName, @NotNull Object fieldValue) {
return Collections.singletonMap(fieldName, Collections.singletonMap("lt", fieldValue));
return Collections.singletonMap(fieldName, Collections.singletonMap("$lt", fieldValue));
}

public static Map<String, Object> lessThanEquals(
Expand Down

0 comments on commit 6187cc5

Please sign in to comment.