Adam
05/23/2018, 6:47 PMAdam
05/23/2018, 6:48 PMAdam
05/23/2018, 6:48 PMAdam
05/23/2018, 6:48 PMAdam
05/23/2018, 6:49 PMAdam
05/23/2018, 6:50 PMSam Hulick
05/23/2018, 8:29 PMMANAGEMENT_API_SECRET
in the env. what would cause this?hez
05/23/2018, 8:43 PMprisma.yml
(i.e. with .env.prod
, .env.dev
, etc) and the index.js
file?hez
05/23/2018, 8:43 PMhez
05/23/2018, 9:02 PMrwatts3
05/23/2018, 11:12 PMgabe.bravo
05/24/2018, 1:36 AMgabe.bravo
05/24/2018, 1:37 AMgabe.bravo
05/24/2018, 1:37 AMJim
05/24/2018, 2:43 AMSam Jackson
05/24/2018, 3:33 AMAsPrO
05/24/2018, 4:36 AMTill
05/24/2018, 7:41 AMnotrab
05/24/2018, 8:03 AMcsamu
05/24/2018, 9:13 AMCal
05/24/2018, 10:27 AMTill
05/24/2018, 10:50 AMhalborg
05/24/2018, 11:39 AMsrc/index.ts(5,34): error TS2345: Argument of type '{ typeDefs: string; resolvers: typeof "/.../src/...' is not assignable to parameter of type 'Props'.
Types of property 'resolvers' are incompatible.
Type 'typeof "/.../src/resolvers/index"' is not assignable to type 'IResolvers | undefined'.
Type 'typeof "/.../src/resolvers/index"' is not assignable to type 'IResolvers'.
Property 'default' is incompatible with index signature.
Type '{ Query: { feed(parent: any, args: any, ctx: Context, info: any): Promise<Post[]>; drafts(parent:...' is not assignable to type 'GraphQLScalarType | (() => any) | IResolverObject'.
Type '{ Query: { feed(parent: any, args: any, ctx: Context, info: any): Promise<Post[]>; drafts(parent:...' is not assignable to type 'IResolverObject'.
Property 'Query' is incompatible with index signature.
Type '{ feed(parent: any, args: any, ctx: Context, info: any): Promise<Post[]>; drafts(parent: any, arg...' is not assignable to type 'GraphQLFieldResolver<any, any, { [argName: string]: any; }> | IResolverOptions'.
Type '{ feed(parent: any, args: any, ctx: Context, info: any): Promise<Post[]>; drafts(parent: any, arg...' has no properties in common with type 'IResolverOptions'.
Can anyone tell me how fix that?siyfion
05/24/2018, 12:21 PMlocalhost:3306
to no avail, so I assume that the container may not be exposing any ports to connect too?lewisblackwood
05/24/2018, 12:34 PMprisma-bindings
, and finding that if I add keys on my subfields, sometimes the result will be shown as null, even though nodes exist. Does anyone know why that would be? Here's an example:
query {
currentUser {
organisation {
usersWithInvite: users(
where: { invite: { id_not: null } }
) {
id
}
}
}
}
returns:
{
"data": {
"currentUser": {
"organisation": {
"usersWithInvite": null
}
}
}
}
If I add another users
subselection, the whole query works as expected:
query {
currentUser {
organisation {
users {
id
}
usersWithInvite: users(
where: { invite: { id_not: null } }
) {
id
}
}
}
}
returns:
{
"data": {
"currentUser": {
"organisation": {
"users": [
...manyUsers
],
"usersWithInvite": [
...manyUsers
]
}
}
}
}
hamdi
05/24/2018, 1:33 PMjjaybrown98
05/24/2018, 1:49 PMClient does not support authentication protocol requested by server. Consider upgrading MariaDB client. plugin was = caching_sha2_password
nilan
05/24/2018, 2:03 PMPaddy
05/24/2018, 2:07 PMTill
05/24/2018, 2:38 PMctx.db.query...
, i extended my User and want to add something from that record to the jwt