Build a GraphQL SDL (Schema Definition Language) from type, queries, and mutations.
type User {
id: ID!
email: String!
name: String
createdAt: String!
}
type Query {
user(id: ID!): User
users: [User!]!
}
type Mutation {
createUser(email: String!, name: String): User!
}