Steven Vachon
06/01/2019, 5:40 PMtype Query {
id: ID! @id
thing: [Thing!]!
}
and getting:
The typehas is using a reserved type name. Please rename it.Query
ScottAgirs
06/02/2019, 7:00 PMtype Thing {
id
thing: Thing
}
and then in resolvers either create resolver or forward to dbSteven Vachon
06/03/2019, 12:33 PMQuery
and Mutation