spences10
02/08/2018, 5:26 PMFile
feild be changed or is it advised to leave it and add in your own?Rysia
02/08/2018, 5:33 PM"message": "No CONNECT permissions"
. Similar to https://www.graph.cool/forum/t/no-connect-permissions/1940. I have searched around the web but not found a solutionspences10
02/08/2018, 5:38 PMspences10
02/08/2018, 5:38 PMspences10
02/08/2018, 5:39 PMjjaybrown98
02/08/2018, 6:06 PMrem
02/08/2018, 6:14 PMrem
02/08/2018, 6:14 PMwesbos
02/08/2018, 6:17 PMnilan
02/08/2018, 6:42 PMkitze
02/08/2018, 6:49 PMharrisrobin
02/08/2018, 6:57 PMsenorcodecat
02/08/2018, 7:00 PMjaaberg
02/08/2018, 7:03 PMwesbos
02/08/2018, 7:33 PMpeter
02/08/2018, 7:34 PMmysql
container and prisma
container. 2) stop these containers when done developing for a periodmax
02/08/2018, 7:37 PMmax
02/08/2018, 7:40 PMspences10
02/08/2018, 7:54 PMkitze
02/08/2018, 8:30 PMkitze
02/08/2018, 8:31 PM...forwarded.queries
and ...forwarded.mutations
into your resolvers ๐kitze
02/08/2018, 8:32 PMkitze
02/08/2018, 8:33 PMSharon
02/08/2018, 9:27 PMJacob
02/08/2018, 10:23 PMveksen
02/09/2018, 1:07 AMinterface Field {
id: ID! @unique
name: String!
type: String!
}
type StringField implements Field {
id: ID! @unique
name: String!
type: String!
value: String!
}
type IntField implements Field {
id: ID! @unique
name: String!
type: String!
value: Int!
}
# union FieldValue = StringField | DateTime | IntField | Float | Boolean
union FieldValue = StringField | IntField
type Form {
id: ID! @unique
name: String!
author: User!
kiosk: Kiosk!
fields: [FieldValue!]!
}
etx
02/09/2018, 1:39 AMetx
02/09/2018, 1:41 AMhakubanjin
02/09/2018, 2:28 AMhakubanjin
02/09/2018, 2:29 AM