updateUserBio method

Future<MyUserEventsVersionedMixin?> updateUserBio(
  1. UserBio? bio
)

Updates or resets the MyUser.bio field of the authenticated MyUser.

Authentication

Mandatory.

Result

One of the following MyUserEvents may be produced on success:

Idempotent

Succeeds as no-op (and returns no MyUserEvent) if the authenticated MyUser uses the provided bio already.

Implementation

Future<MyUserEventsVersionedMixin?> updateUserBio(UserBio? bio) async {
  Log.debug('updateUserBio($bio)', '$runtimeType');

  final variables = UpdateUserBioArguments(bio: bio);
  QueryResult res = await client.mutate(
    MutationOptions(
      operationName: 'UpdateUserBio',
      document: UpdateUserBioMutation(variables: variables).document,
      variables: variables.toJson(),
    ),
  );
  return UpdateUserBio$Mutation.fromJson(res.data!).updateUserBio;
}