(boolQuery)
| 135 | |
| 136 | // add internal query |
| 137 | addQuery(boolQuery) { |
| 138 | var self = this; |
| 139 | var queryObj = JSON.parse(JSON.stringify(self.queryFormat.internal)); |
| 140 | boolQuery.internal.push(queryObj); |
| 141 | this.buildQuery(); |
| 142 | } |
| 143 | |
| 144 | // builquery - this function handles everything to build the query |
| 145 | buildQuery() { |
nothing calls this directly
no test coverage detected