getRelationships method

Future<RelationShipListResponse> getRelationships({
  1. required String tableId,
  2. String? authorization,
  3. int? skip,
  4. String? userAgent,
})

Get all relationships

Get a list of all relationships, and their definitions, for a specific table. Details are provided for both the parent and child sides of relationships within a given application. Limited details are returned for cross-application relationships.

Implementation

Future<RelationShipListResponse> getRelationships({
  required String tableId, String? authorization, int? skip, String? userAgent }) async {
  return _tablesService.getRelationships(tableId: tableId, authorization: authorization, skip: skip, userAgent: userAgent);
}