signUp method

Future<SignUp$Mutation$CreateUser> signUp({
  1. UserLogin? login,
  2. UserPassword? password,
})

Creates a new MyUser having only id and unique num fields, along with a Session for him (valid for the returned expiration).

AccessToken of the created Session may be prolonged via refreshSession.

Once the created Session expires and cannot be refreshed, the created MyUser looses its access, if he doesn't provide the password argument now or sets it later via Mutation.updateUserPassword within that period of time.

User-Agent HTTP header must be specified for this mutation and meet the UserAgent scalar format.

Authentication

None.

Non-idempotent

Each time creates a new unique MyUser and a new Session.

Implementation

Future<SignUp$Mutation$CreateUser> signUp({
  UserLogin? login,
  UserPassword? password,
}) async {
  Log.debug('signUp()', '$runtimeType');

  final variables = SignUpArguments(login: login, password: password);
  final QueryResult result = await client.mutate(
    MutationOptions(
      operationName: 'SignUp',
      document: SignUpMutation(variables: variables).document,
      variables: variables.toJson(),
    ),
    onException:
        (data) => SignUpException(
          (SignUp$Mutation.fromJson(data).createUser
                  as SignUp$Mutation$CreateUser$CreateUserError)
              .code,
        ),
    raw: const RawClientOptions(),
  );
  return SignUp$Mutation.fromJson(result.data!).createUser;
}