guesstimate/internal/graph/query.graphql

14 lines
145 B
GraphQL
Raw Normal View History

2020-08-08 15:04:59 +02:00
scalar Time
type User {
id: ID!
name: String
email: String!
connectedAt: Time!
createdAt: Time!
}
type Query {
currentUser: User
}