unblockUser method

Future<BlocklistEventsVersionedMixin?> unblockUser(
  1. UserId id
)

Removes the specified User from the blocklist of the authenticated MyUser.

Reverses the action of blockUser.

Authentication

Mandatory.

Result

Only the following BlocklistEvent may be produced on success:

Idempotent

Succeeds as no-op (and returns no BlocklistEvent) if the specified User is not blocked by the authenticated MyUser already.

Implementation

Future<BlocklistEventsVersionedMixin?> unblockUser(UserId id) async {
  Log.debug('unblockUser($id)', '$runtimeType');

  final variables = UnblockUserArguments(id: id);
  final QueryResult result = await client.mutate(
    MutationOptions(
      operationName: 'UnblockUser',
      document: UnblockUserMutation(variables: variables).document,
      variables: variables.toJson(),
    ),
    onException:
        (data) => UnblockUserException(
          UnblockUser$Mutation.fromJson(data).unblockUser
              as UnblockUserErrorCode,
        ),
  );
  return UnblockUser$Mutation.fromJson(result.data!).unblockUser
      as BlocklistEventsVersionedMixin?;
}