kdichev
12/21/2017, 1:30 PMrajit
12/21/2017, 1:34 PMpreviousValues { id }
I get Insufficient permissions
— I've tried making the entity readable by everyone, i.e. I completely relaxed the permission query. I still get insufficient permissions
Has anyone seen that? What's the correct way to subscribe to deletes?max
12/21/2017, 1:35 PMserverless-plugin-typescript
? Any thoughts?rein
12/21/2017, 1:36 PMRedShift
12/21/2017, 2:24 PMRedShift
12/21/2017, 2:24 PMtimrs2998
12/21/2017, 2:27 PMGuilherme Estevão
12/21/2017, 5:00 PMGuilherme Estevão
12/21/2017, 5:02 PMyolen
12/21/2017, 5:09 PMsenorcodecat
12/21/2017, 8:18 PMsenorcodecat
12/21/2017, 8:19 PMTomche
12/21/2017, 8:29 PMrein
12/21/2017, 9:21 PMagustif
12/22/2017, 4:08 AMSaeris
12/22/2017, 4:40 AMrein
12/22/2017, 8:34 AMrein
12/22/2017, 8:34 AMmax
12/22/2017, 11:39 AMmax
12/22/2017, 11:52 AMplayra
12/22/2017, 2:11 PMnjorogedavid13
12/22/2017, 3:39 PMkdichev
12/22/2017, 4:36 PMkdichev
12/22/2017, 4:51 PMkdichev
12/22/2017, 5:18 PMjlengstorf
12/22/2017, 6:06 PMinstall.js
step in the CLI create
command?brad.barnes
12/22/2017, 6:56 PMbrad.barnes
12/22/2017, 7:15 PMstearm
12/22/2017, 7:22 PMUser
<-> Task
relationship in which a User
can have zero or many `Task`s assigned and a Task
can have zero or only one User
assigned.stearm
12/22/2017, 7:22 PMtype Task @model {
id: ID! @isUnique
title: String
description: String
assignee: User! @relation(name: "UserTasks")
effort: Effort! @relation(name: "TaskEffort")
}
type User @model {
id: ID! @isUnique
createdAt: DateTime!
updatedAt: DateTime!
name: String!
tasks: [Task!]! @relation(name: "UserTasks")
email: String! @isUnique
password: String!
}