(state, itemId)
| 261 | } |
| 262 | |
| 263 | export function selectEntitySetItem(state, itemId) { |
| 264 | const item = selectObject(state, state.entitySetItems, itemId); |
| 265 | item.entity = selectEntity(state, item.entityId || item.entity?.id); |
| 266 | return item; |
| 267 | } |
| 268 | |
| 269 | export function selectMappingsResult(state, query) { |
| 270 | return selectResult(state, query, selectEntityMapping); |
nothing calls this directly
no test coverage detected