prisma's SDL is somewhat different from the spec.....
# orm-help
s
prisma's SDL is somewhat different from the spec... i have this:
Copy code
type Query {
  id: ID! @id
  thing: [Thing!]!
}
and getting:
The type
Query
has is using a reserved type name. Please rename it.
s
you can only extend type Query, as there are few core types such as Query, Mutation, Subscription I believe what you are trying to do is create a new type Thing:
Copy code
type Thing {
    id
    thing: Thing
}
and then in resolvers either create resolver or forward to db
s