createChatContact method
- required UserName name,
- 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
ChatContactRecord
s. Use Mutation.createChatContactRecords
to add more,
if you need so.
Authentication
Mandatory.
Result
The following ChatContactEvents may be produced on success:
- EventChatContactCreated;
- EventChatContactEmailAdded;
- EventChatContactGroupAdded;
- EventChatContactPhoneAdded;
- EventChatContactUserAdded.
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;
}