@@ -16,16 +16,21 @@ func (r *mutationResolver) Signup(ctx context.Context, params model.SignUpInput)
1616 return resolvers .SignupResolver (ctx , params )
1717}
1818
19- // MobileBasicAuthSignup is the resolver for the mobile_basic_auth_signup field.
20- func (r * mutationResolver ) MobileBasicAuthSignup (ctx context.Context , params * model.MobileBasicAuthSignUpUpInput ) (* model.AuthResponse , error ) {
21- return resolvers .MobileBasicAuthSignupResolver (ctx , params )
19+ // MobileSignup is the resolver for the mobile_signup field.
20+ func (r * mutationResolver ) MobileSignup (ctx context.Context , params * model.MobileSignUpInput ) (* model.AuthResponse , error ) {
21+ return resolvers .MobileSignupResolver (ctx , params )
2222}
2323
2424// Login is the resolver for the login field.
2525func (r * mutationResolver ) Login (ctx context.Context , params model.LoginInput ) (* model.AuthResponse , error ) {
2626 return resolvers .LoginResolver (ctx , params )
2727}
2828
29+ // MobileLogin is the resolver for the mobile_login field.
30+ func (r * mutationResolver ) MobileLogin (ctx context.Context , params model.MobileLoginInput ) (* model.AuthResponse , error ) {
31+ return resolvers .MobileLoginResolver (ctx , params )
32+ }
33+
2934// MagicLinkLogin is the resolver for the magic_link_login field.
3035func (r * mutationResolver ) MagicLinkLogin (ctx context.Context , params model.MagicLinkLoginInput ) (* model.Response , error ) {
3136 return resolvers .MagicLinkLoginResolver (ctx , params )
0 commit comments