updateUserPresence method

Future<MyUserEventsVersionedMixin?> updateUserPresence(
  1. Presence presence
)

Updates MyUser.presence to the provided value.

Authentication

Mandatory.

Result

Only the following MyUserEvent may be produced on success:

Idempotent

Succeeds as no-op (and returns no MyUserEvent) if the authenticated MyUser has the provided presence value already.

Implementation

Future<MyUserEventsVersionedMixin?> updateUserPresence(
  Presence presence,
) async {
  Log.debug('updateUserPresence($presence)', '$runtimeType');

  final variables = UpdateUserPresenceArguments(presence: presence);
  QueryResult res = await client.mutate(
    MutationOptions(
      operationName: 'UpdateUserPresence',
      document: UpdateUserPresenceMutation(variables: variables).document,
      variables: variables.toJson(),
    ),
  );
  return UpdateUserPresence$Mutation.fromJson(res.data!).updateUserPresence;
}