guesstimate/internal/graph/query.graphql

14 lines
145 B
GraphQL

scalar Time
type User {
id: ID!
name: String
email: String!
connectedAt: Time!
createdAt: Time!
}
type Query {
currentUser: User
}