(querys)
| 149 | } |
| 150 | } |
| 151 | getBatchData(querys) { |
| 152 | let tasks = []; |
| 153 | for(let i = 0, query; query = querys[i]; i++) { |
| 154 | tasks[i] = this.load(query); |
| 155 | } |
| 156 | return Promise.all(tasks); |
| 157 | } |
| 158 | getBatchDataWithIds(params) { |
| 159 | let { key, ids, syncInBackground, syncParams } = params; |
| 160 |
no test coverage detected