prisma-relay-cursor-connection
prisma-relay-cursor-connection copied to clipboard
Extend Prisma's `findMany` method to support Relay Cursor Connections.
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/devoxa/prisma-relay-cursor-connection). ## Open These updates have all been...
I was trying to query all records but it was returning an empty object ```js findPage() { return findManyCursorConnection( (args) => this.prisma.product.findMany({ ...args, where: { published: true } }), ()...
It would be nice to be able to opt out of the `nodes` return value for use-cases where it's not needed. Requires a different function return type based on an...
From the end-user's code it is not possible to implement a user-interface like: Without effectively re-creating this library (or drastically over-fetching). Back at the start of last year, @mzikherman gave...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/jest](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`28.1.8` -> `29.0.3`](https://renovatebot.com/diffs/npm/@types%2fjest/28.1.8/29.0.3) |...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [buildjet/cache](https://togithub.com/buildjet/cache) | action | major | `v3` -> `v4` | ---...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [codecov/codecov-action](https://togithub.com/codecov/codecov-action) | action | major | `v3` -> `v4` | ---...
I use `prisma-relay-cursor-connection` with my NestJS backend, I created a function ```ts async findCategories(): Promise { return await findManyCursorConnection( (x) => this.prisma.storyCategory.findMany({ ...x, include: { stories: { take: 1, include:...
Would it be possible to only bring back the count and not have to grab any records? I currently have to pass either first or last with a positive value....
From the end-user's code it is not possible to implement a user-interface like: Without effectively re-creating this library (or drastically over-fetching). --- For authors interested in adding this to the...