feat: add resolver to delete user

This commit is contained in:
Lakhan Samani
2021-08-06 19:17:52 +05:30
parent 104adfea1d
commit 9473268654
12 changed files with 361 additions and 180 deletions

View File

@@ -9,6 +9,10 @@ type AuthResponse struct {
User *User `json:"user"`
}
type DeleteUserInput struct {
Email string `json:"email"`
}
type Error struct {
Message string `json:"message"`
Reason string `json:"reason"`