BSD
01/28/2018, 8:04 AMtype Post {
id: ID! @unique
createdAt: DateTime!
updatedAt: DateTime!
active: Boolean! @default(value: "true")
title: String!
text: String!
author: User!
category: CATEGORY!
}
I want to create Post and connect to existing user.
How can I do this?
Thanksnilan
01/28/2018, 2:49 PM