( relationshipsOrRelationshipsId?: MaybeRelationshipsOrRelationshipsId, )
| 1371 | useProvideThing(relationshipsId, relationships, OFFSET_RELATIONSHIPS); |
| 1372 | |
| 1373 | export const useRelationshipIds = ( |
| 1374 | relationshipsOrRelationshipsId?: MaybeRelationshipsOrRelationshipsId, |
| 1375 | ): Accessor<Ids> => |
| 1376 | useListenable( |
| 1377 | RELATIONSHIP + IDS, |
| 1378 | useRelationshipsOrRelationshipsById(relationshipsOrRelationshipsId), |
| 1379 | ReturnType.Array, |
| 1380 | ); |
| 1381 | |
| 1382 | export const useRemoteRowId = ( |
| 1383 | relationshipId: MaybeAccessor<Id>, |
searching dependent graphs…