We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 39fcfc7 + f862f71 commit e58ecc4Copy full SHA for e58ecc4
src/main/java/com/slicingdice/jslicer/utils/validators/QueryDataExtractionValidator.java
@@ -47,9 +47,6 @@ private boolean validKeys() {
47
if (!(this.data.get(key) instanceof Integer)) {
48
throw new InvalidQueryException("The key 'limit' in query has a invalid value.");
49
}
50
- if (this.data.getInt(key) > 100) {
51
- throw new InvalidQueryException("The field 'limit' has a value max of 100.");
52
- }
53
} else if (key.equals("fields")) {
54
if (this.data.getJSONArray("fields").length() > 10) {
55
throw new MaxLimitException("The key 'fields' in data extraction result must" +
0 commit comments