steveb
02/15/2018, 7:03 PMtype Artist @model {
createdAt: DateTime!
updatedAt: DateTime!
id: ID! @isUnique
firstName: String!
lastName: String!
fullName: `{$firstName} {$lastName}`
}
Adam King
02/15/2018, 7:10 PMgraphql-yoga
server on top of the Prisma database, so we have just added a new field to our public API, in which the resolver for that field acts the same as our mongoose virtual fields used to.shane
02/15/2018, 7:15 PM