( relationships: Relationships | undefined, relationshipId: Id, )
| 17 | ): Props => (isUndefined(getProps) ? ({} as Props) : getProps(...ids)); |
| 18 | |
| 19 | export const getRelationshipsStoreTableIds = ( |
| 20 | relationships: Relationships | undefined, |
| 21 | relationshipId: Id, |
| 22 | ): [ |
| 23 | Relationships | undefined, |
| 24 | Store | undefined, |
| 25 | Id | undefined, |
| 26 | Id | undefined, |
| 27 | ] => [ |
| 28 | relationships, |
| 29 | relationships?.getStore(), |
| 30 | relationships?.getLocalTableId(relationshipId), |
| 31 | relationships?.getRemoteTableId(relationshipId), |
| 32 | ]; |
| 33 | |
| 34 | export const getIndexStoreTableId = ( |
| 35 | indexes: Indexes | undefined, |
nothing calls this directly
no test coverage detected
searching dependent graphs…