cory
08/20/2018, 7:47 PMGraphQL error: Either that heroku account doesn't exist or it's not part of this workspace
cory
08/20/2018, 7:47 PMcory
08/20/2018, 7:58 PMprisma init
with the demo server worked nicely… Where can I throw money at this problem so I can work? 😩illuday
08/20/2018, 8:15 PMDalia
08/20/2018, 8:19 PMsuitemike
08/20/2018, 8:20 PMDalia
08/20/2018, 8:20 PMTrying to populate non string value into a string for variable ${env:PRISMA_STAGE}. Please make sure the value of the property is a string.
Dalia
08/20/2018, 8:21 PM.env
file, btw don't have any problem with numeric variablesstalbert
08/20/2018, 8:22 PMalechp
08/20/2018, 10:41 PMAlejandro Poggi
08/20/2018, 10:50 PMmtliendo
08/20/2018, 11:24 PMhw
08/21/2018, 1:56 AMcory
08/21/2018, 2:25 AMcory
08/21/2018, 2:26 AMcory
08/21/2018, 2:26 AMzak.singh
08/21/2018, 2:59 AMERROR: Authentication token is invalid: Token can't be decoded: Invalid signature for this token or wrong algorithm.
when I run prisma deploy. What could cause this?cory
08/21/2018, 3:16 AM$ prisma login
zak.singh
08/21/2018, 3:28 AMzak.singh
08/21/2018, 3:29 AMprisma login
doesn't change anythingcory
08/21/2018, 3:31 AMprisma token
? ¯\_(ツ)_/¯zak.singh
08/21/2018, 3:33 AMzak.singh
08/21/2018, 3:34 AMprisma deploy
again... very strangeleomeloxp
08/21/2018, 5:51 AMArgument of type '"{ id name }"' is not assignable to parameter of type '{ [key: string]: any; }'
leomeloxp
08/21/2018, 5:52 AMprisma.query
is of type QueryMap
. prisma.query.users
has the following signature: (args?: {
[key: string]: any;
}, context?: {
[key: string]: any;
}, info?: string | GraphQLResolveInfo) => Promise<any>
Moritz
08/21/2018, 8:46 AMLuke
08/21/2018, 9:14 AMhoria.ancas
08/21/2018, 1:01 PMtype User {
name: String!
locations: [String!]!
}
How would the createUser mutation look like?horia.ancas
08/21/2018, 1:03 PM[Location!]!
?Martin
08/21/2018, 1:15 PM