CCBCodeMonkey
12/11/2018, 4:51 AMCCBCodeMonkey
12/11/2018, 4:51 AMGaurav
12/11/2018, 6:01 AMCaused by: java.sql.SQLInvalidAuthorizationSpecException: Could not connect: Access denied for user 'prisma_AdminOne'@'49.35.254.67' (using password: NO)
Post: https://www.prisma.io/forum/t/aws-rds-could-not-connect-to-server-and-where-are-the-docs-for-deployments/5314/3davigarcas
12/11/2018, 10:50 AMwoss
12/11/2018, 10:51 AM@description
in the prisma datamodel? is it meant to be served as description for the fields? 'Coz that be great! šk0ff33
12/11/2018, 3:37 PMpermissions
and error says āunknown fieldā š. Example attached.Oskar
12/11/2018, 4:44 PMdevan
12/11/2018, 5:02 PMclaym
12/11/2018, 5:10 PMpancake
12/11/2018, 5:12 PMtype ClientUser implements User {
...
email: String! @unique
...
connections: [Connection] @relation(name: "ClientConnect")
}
...
type Connection {
id: ID! @unique
...
organization: Organization! @relation(name: "OrgConnect")
...
}
...
type Organization {
id: ID! @unique
...
stripeID: String
...
}
Iāve written a query that looks like this:
getClientUserWhere( where: { email: \"<mailto:foo@barbaz.com|foo@barbaz.com>\" } ) { connections { organization { stripeID } } }
which doesnāt seem to hit any responses. In fact, it canāt seem to find anything through the connections relation, even the id of connections associated with foo. I am wondering if this is aught to do with my query or data model⦠Any thoughts?sansafrank
12/11/2018, 6:57 PMHasen
12/11/2018, 7:00 PMdevan
12/11/2018, 8:39 PMlaunch.json
working with nodemon that is running ts-node?Bruno
12/11/2018, 9:38 PMUser
and Post
, the connecting table _PostToUser
has 3 columns: id
,A
and B
. Is there a way to make those column names more descriptive?claym
12/11/2018, 10:05 PMrwatts3
12/11/2018, 11:25 PMrwatts3
12/11/2018, 11:26 PMrwatts3
12/11/2018, 11:27 PMNick
12/12/2018, 4:27 AMhuv1k
12/12/2018, 10:00 AMwoss
12/12/2018, 12:54 PMsiyfion
12/12/2018, 12:58 PMDataloader
in combination with Prisma Client?leafyshark
12/12/2018, 3:01 PMleafyshark
12/12/2018, 3:02 PMjdoyle112
12/12/2018, 3:08 PMjdoyle112
12/12/2018, 3:08 PMleafyshark
12/12/2018, 4:40 PMDrew Delianides
12/12/2018, 10:40 PMkazi
12/13/2018, 4:34 AMMartin Hunt
12/13/2018, 9:19 AM