(path, location, context, queryName)
| 20 | static MAX_LIMIT = 9999; |
| 21 | |
| 22 | static fromLocation(path, location, context, queryName) { |
| 23 | const state = queryString.parse(location.search); |
| 24 | return new Query(path, state, context, queryName); |
| 25 | } |
| 26 | |
| 27 | clone() { |
| 28 | const state = _.cloneDeep(this.state); |
no outgoing calls
no test coverage detected