updateUserBio method
- 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:
- EventUserBioUpdated (if the
bio
argument is specified); - EventUserBioDeleted (if the
bio
argument is absent or isnull
).
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;
}