(state, profileId)
| 342 | } |
| 343 | |
| 344 | export function selectProfileReferences(state, profileId) { |
| 345 | const profile = selectProfile(state, profileId); |
| 346 | const query = profileReferencesQuery(profileId); |
| 347 | const references = selectProfileExpandResult(state, query); |
| 348 | return buildReferences(references, profile?.entity?.schema); |
| 349 | } |
| 350 | |
| 351 | export function selectProfileReference(state, profileId, qname) { |
| 352 | const references = selectProfileReferences(state, profileId); |
no test coverage detected