unfavoriteChatContact method

Future<ChatContactEventsVersionedMixin?> unfavoriteChatContact(
  1. ChatContactId id
)

Removes the specified ChatContact from the favorites list of the authenticated MyUser.

Authentication

Mandatory.

Result

Only the following ChatContactEvent may be produced on success:

Idempotent

Succeeds as no-op (and returns no ChatContactEvent) if the specified ChatContact is not in the favorites list already.

Implementation

Future<ChatContactEventsVersionedMixin?> unfavoriteChatContact(
  ChatContactId id,
) async {
  throw UnimplementedError();

  // Log.debug('unfavoriteChatContact($id)', '$runtimeType');

  // final variables = UnfavoriteChatContactArguments(id: id);
  // final QueryResult result = await client.mutate(
  //   MutationOptions(
  //     operationName: 'UnfavoriteChatContact',
  //     document: UnfavoriteChatContactMutation(variables: variables).document,
  //     variables: variables.toJson(),
  //   ),
  //   onException: (data) => UnfavoriteChatContactException(
  //       (UnfavoriteChatContact$Mutation.fromJson(data).unfavoriteChatContact
  //               as UnfavoriteChatContact$Mutation$UnfavoriteChatContact$UnfavoriteChatContactError)
  //           .code),
  // );
  // return UnfavoriteChatContact$Mutation.fromJson(result.data!)
  //     .unfavoriteChatContact as ChatContactEventsVersionedMixin?;
}