Rifa Achrinza
Rifa Achrinza
Still prototyping on how the initial integration will work; Hopefully I can get a PR ready in the upcoming weeks, but no promises as of now. Though this should not...
Hi @VinayaSathyanarayana, the Prisma integration is still in progress, though I haven't had as much time as I'd like to work on it. To give an update, lifecycle integration is...
@josemotta When it comes to ORMs, I see that there's two types of LoopBack integration that can be done: 1. LoopBack-to-ORM 2. ORM-to-LoopBack --- LoopBack-to-ORM can be broken down into...
Yes, that's would be the general idea: Use LB4/Prisma/Some other modelling to generate the OpenAPI 3.0 spec which can then be used by other API consumers. One additional scenario is...
A summary of the code flow is: 1. LB4 Repository calls Juggler Model Class `.create` 2. Juggler Model Class gets the above method (and others) from being [mixin-ed](https://github.com/loopbackio/loopback-datasource-juggler/blob/f8d7ca94740887e9beefc586442f025c12c29e7f/lib/datasource.js#L742) Juggler [DataAccessObject](https://github.com/loopbackio/loopback-next/blob/e6eacffa3b36c1769861ad5a4db71c615c17b1f3/packages/repository/src/repositories/legacy-juggler-bridge.ts#L497)...
@samarpan-b The MongoDB connector inherits from `Connector` instead, hence it should not be affected by updates to `SQLConnector`: https://github.com/loopbackio/loopback-connector-mongodb/blob/51d132a48c0b559978a3d379a9695ff6bc1d888a/lib/mongodb.js#L211 Though it does implement the necessary CRUD functions to be compatible...
Currently, the CLI does assume that either the "legacy" JSON or "current" TypeScript-style config is available: 1. **JSON-style** expects `*.datasource.config.json`, where `*` is the filename of the equivalent DataSource TypeScript...
Is `no-inferrable-types` the correct eslint rule? AFAIK it's to prevent unnecessary verbosity when declaring a variable or parameter type. Though it's still a good rule to enable nonetheless.
Thanks, @jtbandes! Will see if we can incorporate it into our monorepo.
`-s` is for adding the DCO sign-off; Though the sign-off can be typed manually as well. `--amend` is for modifying the previous commit (e.g. If you've forgotten to use `-s`...