()
| 106 | } |
| 107 | |
| 108 | fields() { |
| 109 | // List all the fields set for this query |
| 110 | const keys = _.keys(this.context); |
| 111 | _.keys(this.state).forEach((name) => { |
| 112 | if (name.startsWith(this.queryName)) { |
| 113 | keys.push(name.substr(this.queryName.length)); |
| 114 | } |
| 115 | }); |
| 116 | return _.uniq(keys); |
| 117 | } |
| 118 | |
| 119 | filters() { |
| 120 | // List all the filters explictly active in this query |