Skip to content

Instantly share code, notes, and snippets.

@neerajkumar161
Created December 27, 2021 17:00
Show Gist options
  • Save neerajkumar161/5c5d2d9c9ee25beacf11cd407c995451 to your computer and use it in GitHub Desktop.
Save neerajkumar161/5c5d2d9c9ee25beacf11cd407c995451 to your computer and use it in GitHub Desktop.
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