hideChat method

Future<ChatEventsVersionedMixin?> hideChat(
  1. ChatId chatId
)

Marks the specified Chat as hidden for the authenticated MyUser.

Hidden Chat is excluded from recentChats, but preserves all its content. Once a new ChatItem posted in a Chat it becomes visible again, and so included into recentChats as well.

Authentication

Mandatory.

Result

Only the following ChatEvent may be produced on success:

Idempotent

Succeeds as no-op (and returns no ChatEvent) if the specified Chat is already hidden by the authenticated MyUser.

Implementation

Future<ChatEventsVersionedMixin?> hideChat(ChatId chatId) async {
  Log.debug('hideChat($chatId)', '$runtimeType');

  HideChatArguments variables = HideChatArguments(chatId: chatId);
  final QueryResult result = await client.mutate(
    MutationOptions(
      operationName: 'HideChat',
      document: HideChatMutation(variables: variables).document,
      variables: variables.toJson(),
    ),
    onException:
        (data) => HideChatException(
          (HideChat$Mutation.fromJson(data).hideChat
                  as HideChat$Mutation$HideChat$HideChatError)
              .code,
        ),
  );
  return (HideChat$Mutation.fromJson(result.data!).hideChat
      as ChatEventsVersionedMixin?);
}