hideChatItem method

Future<ChatEventsVersionedMixin?> hideChatItem(
  1. ChatItemId id
)

Hides the specified ChatItem for the authenticated MyUser.

Hidden ChatItem is not visible only for the one who hid it, remaining visible for other Users.

Use this mutation for "deleting" a ChatItem for the authenticated MyUser in Chat's UI in case deleteChatMessage (or deleteChatForward) returns READ (or QUOTED) error.

Authentication

Mandatory.

Result

Only the following ChatEvent may be produced on success:

Idempotent

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

Implementation

Future<ChatEventsVersionedMixin?> hideChatItem(ChatItemId id) async {
  Log.debug('hideChatItem($id)', '$runtimeType');

  HideChatItemArguments variables = HideChatItemArguments(id: id);
  final QueryResult result = await client.mutate(
    MutationOptions(
      operationName: 'HideChatItem',
      document: HideChatItemMutation(variables: variables).document,
      variables: variables.toJson(),
    ),
    onException:
        (data) => HideChatItemException(
          (HideChatItem$Mutation.fromJson(data).hideChatItem
                  as HideChatItem$Mutation$HideChatItem$HideChatItemError)
              .code,
        ),
  );
  return (HideChatItem$Mutation.fromJson(result.data!).hideChatItem
      as ChatEventsVersionedMixin?);
}