createChatContact method

Future<ChatContactEventsVersionedMixin> createChatContact({
  1. required UserName name,
  2. List<ChatContactRecord>? records,
})

Creates a new ChatContact in the authenticated MyUser's address book.

Initially, a new ChatContact can be created with no more than 20 ChatContactRecords. Use Mutation.createChatContactRecords to add more, if you need so.

Authentication

Mandatory.

Result

The following ChatContactEvents may be produced on success:

Non-idempotent

Each time creates a new unique ChatContact.

Implementation

Future<ChatContactEventsVersionedMixin> createChatContact({
  required UserName name,
  List<ChatContactRecord>? records,
}) async {
  throw UnimplementedError();

  // Log.debug('createChatContact($name, $records)', '$runtimeType');

  // final variables = CreateChatContactArguments(name: name, records: records);
  // final QueryResult result = await client.mutate(
  //   MutationOptions(
  //     operationName: 'CreateChatContact',
  //     document: CreateChatContactMutation(variables: variables).document,
  //     variables: variables.toJson(),
  //   ),
  //   onException: (data) => CreateChatContactException((CreateChatContact$Mutation
  //                   .fromJson(data)
  //               .createChatContact
  //           as CreateChatContact$Mutation$CreateChatContact$CreateChatContactError)
  //       .code),
  // );
  // return CreateChatContact$Mutation.fromJson(result.data!).createChatContact
  //     as ChatContactEventsVersionedMixin;
}