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.
1 parent b2ba672 commit a4a764dCopy full SHA for a4a764d
package.json
@@ -31,6 +31,5 @@
31
"async": "^2.0.1",
32
"sleep": "^4.0.0"
33
},
34
- "dependencies": {
35
- }
+ "dependencies": {}
36
}
src/slicer.js
@@ -193,7 +193,9 @@
193
// Check columns property, columns should have a maximum of 10 itens
194
if (key == "columns") {
195
if (value.constructor != Array) {
196
- throw new errors.InvalidQueryException("The key 'columns' in query has a invalid value.");
+ if (value != 'all') {
197
+ throw new errors.InvalidQueryException("The key 'columns' in query has a invalid value.");
198
+ }
199
200
else {
201
if (value.length > 10) {
0 commit comments