daddy/internal/graph/query.graphql

13 lines
135 B
GraphQL

scalar Time
type User {
name: String
email: String!
connectedAt: Time!
createdAt: Time!
}
type Query {
userProfile: User
}