getRelationships method

Future<XRPCResponse<GraphGetRelationshipsOutput>> getRelationships({
  1. required String actor,
  2. List<String>? others,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Enumerates public relationships between one account, and a list of other accounts. Does not require auth.

Implementation

Future<XRPCResponse<GraphGetRelationshipsOutput>> getRelationships({
  required String actor,
  List<String>? others,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyGraphGetRelationships(
  actor: actor,
  others: others,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);