( relationships: Relationships | undefined, relationshipId: Id, )
| 28 | ): Props => (isUndefined(getProps) ? ({} as Props) : getProps(...ids)); |
| 29 | |
| 30 | export const getRelationshipsStoreTableIds = ( |
| 31 | relationships: Relationships | undefined, |
| 32 | relationshipId: Id, |
| 33 | ): [ |
| 34 | Relationships | undefined, |
| 35 | Store | undefined, |
| 36 | Id | undefined, |
| 37 | Id | undefined, |
| 38 | ] => [ |
| 39 | relationships, |
| 40 | relationships?.getStore(), |
| 41 | relationships?.getLocalTableId(relationshipId), |
| 42 | relationships?.getRemoteTableId(relationshipId), |
| 43 | ]; |
| 44 | |
| 45 | export const getIndexStoreTableId = ( |
| 46 | indexes: Indexes | undefined, |
nothing calls this directly
no test coverage detected
searching dependent graphs…