(entityId, properties, limit)
| 108 | } |
| 109 | |
| 110 | async expandEntity(entityId, properties, limit) { |
| 111 | const query = entityExpandQuery(entityId, properties, limit); |
| 112 | this.props.queryEntityExpand({ query }); |
| 113 | return new Promise((resolve) => { |
| 114 | this.pendingPromises.push({ query, promiseResolve: resolve }); |
| 115 | }); |
| 116 | } |
| 117 | |
| 118 | async updateEntity(entity) { |
| 119 | const { collection, onStatusChange } = this.props; |
nothing calls this directly
no test coverage detected