Created
December 27, 2021 17:00
-
-
Save neerajkumar161/5c5d2d9c9ee25beacf11cd407c995451 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scalar Date | |
type User { | |
_id: ID! | |
firstname: String! | |
lastname: String! | |
email: String! | |
age: String! | |
createdAt: Date | |
updatedAt: Date | |
} | |
type Mutation { | |
createUser( | |
firstname: String! | |
lastname: String! | |
age: Int! | |
email: String! | |
password: String! | |
): User | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment