Jos
10/27/2020, 4:45 PMTaylor
10/27/2020, 5:28 PMTaylor
10/27/2020, 5:29 PMwarmSnowyMorning
10/27/2020, 11:27 PMDerrick
10/28/2020, 3:26 AMDuckyDev
10/28/2020, 8:45 AMmodel Items {
id String @id @default(uuid())
title String?
}
DuckyDev
10/28/2020, 8:45 AMuuid()
, am I missing something here?DuckyDev
10/28/2020, 9:34 AMmigrate
function is still in an experimental state, but is there a big risk of using it anyways?Derrick
10/28/2020, 10:29 AMNeel Modi
10/28/2020, 1:26 PMJaafari El Housseine
10/28/2020, 4:24 PMNatalia
Jin
10/28/2020, 5:47 PMNatalia
Aaron Fulkerson
10/29/2020, 10:09 PMKaspar Naaber
10/30/2020, 2:34 PMGaurav
10/30/2020, 4:51 PMType '"PRIVATE"' is not assignable to type 'PrivacyScope'.
Where enum PrivacyScope
has been defined in the exactly same manner in both Prisma and API schema design.
In client, I can see that Prisma uses makeEnun
. What does it do? Could it be the source os this issue? What's the right way to find and fix this issue?
P.S. I can also see that for enum PrivacyScope { PRIVATE }
Prisma goes the makeEnum
way whereas graphql-code-generator generates a corresponding enum
type with key-value like Private = 'PRIVATE'
Maykon Rodrigues dos Santos
10/31/2020, 2:06 AMPRISMA_CONFIG: |
managementApiSecret: xxxxxxxxx2020
port: 4466
databases:
default:
connector: mysql
host: "<http://xxxxx.mariadb.database.azure.com|xxxxx.mariadb.database.azure.com>"
port: 3306
user: xxxxx@xxxx
password: xxxxxxx!
I did not find a parameters for SSL connection on the docker:
https://hub.docker.com/r/prismagraphql/prisma
This is the instruction from Microsoft:
https://docs.microsoft.com/en-us/azure/mariadb/howto-configure-ssl
Thank you very much!Jared Hanstra
10/31/2020, 2:09 AMnpx prisma migrate save/up
interact with it just fine. It's complaining that authentication failed, but I know it's the correct username and password because I can interact with the database in every environment except in my app (prisma studio, prisma migrate, pgAdmin all work). Any ideas?
Authentication failed against database server at `<postgres-url>`, the provided database credentials for `<user>` are not valid.
Please make sure to provide valid database credentials for the database server at `<postgres-url>`.
at $w.request (/Users/jh/coprime/hq/node_modules/@prisma/client/runtime/index.js:212:54)
at processTicksAndRejections (internal/process/task_queues.js:97:5) {
code: 'P1000',
clientVersion: '2.9.0',
meta: {
database_user: 'coprime',
database_host: '<postgres-url>'
}
}
Kul
10/31/2020, 9:39 AMShawn
10/31/2020, 3:06 PMAaron Fulkerson
11/01/2020, 8:40 PMNatalia
Moray Macdonald
11/02/2020, 5:03 PMgraphql-yoga
? Is it even still maintained?Neel Modi
11/03/2020, 12:34 PMEric Reis
11/03/2020, 10:39 PMEric Reis
11/03/2020, 10:43 PMEric Reis
11/03/2020, 10:43 PMAaron Fulkerson
11/04/2020, 1:50 AMmartin
11/04/2020, 4:03 AMnull
? For some reason, the following doesn’t work:
await prisma.path.deleteMany({
where: { AND: [{ Facilitator: { is: null } }, { User: { is: null } }] }
})