prisma.graphql is sort of a helper functions you c...
# orm-help
h
prisma.graphql is sort of a helper functions you can import in your schema and save you from have to define everything
j
Ohhh, so anything I don't import from prisma.graphql can't be used?
Also, is this valid for defining enums on the db?
Copy code
type User {
  id: ID! @unique
  gender: GenderType!
  updatedAt: DateTime!
  createdAt: DateTime!
}

enum GenderType {
  MALE,
  FEMALE
}
m
yes, it looks good to me