Peter
Peter
@johnkm516 The way I have implemented things is that I've done everything the way the [Nest docs](https://docs.nestjs.com/security/authentication) recommends. So there is a rich resource for you to read up on...
@johnkm516 In terms of a supergraph/subgraph auth scheme, I am still trying to wrap my head around what would be best practice myself. But I believe we already have all...
@johnkm516 Yes, you are correct. You are seeing the remnants of tightly bound code that should be decoupled somehow. There needs refactoring for the things to be appropriately modular. So...
It would probably help you if you just saw some high level code of how tokens are being issued. Take a look at [apps/api/src/app/graphql/resolvers/Auth.ts](https://github.com/ZenSoftware/zen/blob/base/apps/api/src/app/graphql/resolvers/Auth.ts) and read through that code. These...
@johnkm516 I'm trying my hand at a couple of things right now to try to work out the advantages and disadvantages of things. There are more or less 2 styles...
@johnkm516 Also, you can reference this comment https://github.com/prisma/docs/issues/1288#issuecomment-1220825341 for more specifics on why we need to setup a Lerna repo. We should begin to experiment with how to best implement...
@johnkm516 I heard about Nrwl taking over stewardship of Lerna as well. That is very beneficial for us. On the Nrwl YouTube channel they recently posted a short video on...
TimescaleDB is actually an extension ontop of PostgreSQL. You can simply use the PostgreSQL connector. It is not too difficult to turn a Prisma generated table into a TimescaleDB hypertable....
I've had to circumvent this by creating an additional field that my resolver copies and transforms to lowercase. I then do queries over that field utilizing a search parameter that...
My repo [⛩ Nest + Prisma + Angular 🏮 Full Stack GraphQL Starter Kit ⛩](https://github.com/ZenSoftware/zen) is using @casl/prisma for our auth solution. I thought it might be useful if I...