deleteMyUser method

Future<MyUserEventsVersionedMixin> deleteMyUser({
  1. MyUserCredentials? confirmation,
})

Deletes the authenticated MyUser completely.

This action cannot be reverted.

Also deletes all the Sessions of the authenticated MyUser.

Authentication

Mandatory.

Result

Only the following MyUserEvent is always produced on success:

Non-idempotent

Once deleted MyUser cannot be deleted again.

Implementation

Future<MyUserEventsVersionedMixin> deleteMyUser({
  MyUserCredentials? confirmation,
}) async {
  Log.debug('deleteMyUser()', '$runtimeType');

  final variables = DeleteMyUserArguments(confirmation: confirmation);
  final QueryResult res = await client.mutate(
    MutationOptions(
      operationName: 'DeleteMyUser',
      document: DeleteMyUserMutation(variables: variables).document,
      variables: variables.toJson(),
    ),
    onException:
        (data) => DeleteMyUserException(
          (DeleteMyUser$Mutation.fromJson(data).deleteMyUser
                  as DeleteMyUser$Mutation$DeleteMyUser$DeleteMyUserError)
              .code,
        ),
  );
  return DeleteMyUser$Mutation.fromJson(res.data!).deleteMyUser
      as DeleteMyUser$Mutation$DeleteMyUser$MyUserEventsVersioned;
}