#1019773152269717555
Dear everyone, I hope you are doing well.
I am creating the account with GraphQL. I got an issue to create the account.
I appreciate who help me. 🙏
I think mutation has some issue integrate with backend api
addUser(name: string, email: string, password: string): Observable<any> {
console.log("***************** service addUser, appollo=", this.apollo);
return this.apollo.mutate<any>({
mutation: createUserMutation,
variables: {
name,
email,
password
}
});
}