Hi I'm having trouble with an embedded object rela...
# orm-help
a
Hi I'm having trouble with an embedded object relation in Prisma 1: In my parent object I have a field defined:
milestones: [Milestone]
Copy code
type Milestone @embedded {
  _id: ID!
  name: String!
  description: String
  completed: DateTime
}
But when querying that field in the parent via:
Copy code
milestones{
      _id
 }
I get:
TypeError: prismaClient[parentName](...)[fieldName] is not a function
Any suggestions what I'm doing wrong?