(state, entityId)
| 326 | } |
| 327 | |
| 328 | export function selectEntityReferences(state, entityId) { |
| 329 | const entity = selectEntity(state, entityId); |
| 330 | const query = entityReferencesQuery(entityId); |
| 331 | const references = selectEntityExpandResult(state, query); |
| 332 | return buildReferences(references, entity?.schema); |
| 333 | } |
| 334 | |
| 335 | export function selectEntityReference(state, entityId, qname) { |
| 336 | const references = selectEntityReferences(state, entityId); |
no test coverage detected