getPostThreadOtherV2 method

Future<XRPCResponse<UnspeccedGetPostThreadOtherV2Output>> getPostThreadOtherV2({
  1. required AtUri anchor,
  2. bool? prioritizeFollowedUsers,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of unspecced or your application WILL break) Get additional posts under a thread e.g. replies hidden by threadgate. Based on an anchor post at any depth of the tree, returns top-level replies below that anchor. It does not include ancestors nor the anchor itself. This should be called after exhausting app.bsky.unspecced.getPostThreadV2. Does not require auth, but additional metadata and filtering will be applied for authed requests.

Implementation

Future<XRPCResponse<UnspeccedGetPostThreadOtherV2Output>>
getPostThreadOtherV2({
  required AtUri anchor,
  bool? prioritizeFollowedUsers,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyUnspeccedGetPostThreadOtherV2(
  anchor: anchor,
  prioritizeFollowedUsers: prioritizeFollowedUsers,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);