bastienrobert/la-ferme

View on GitHub
packages/server/app/graphql/types/user.graphql

Summary

Maintainability
Test Coverage
type User {
  uuid: UUID!
}

type UserExist {
  uuid: UUID!
  exists: Boolean!
}

extend type Query {
  getUser(uuid: UUID): UserExist!
}