We have a few spots on the generated Prisma Client, which are not yet covered with JSDoc comments:
/**
* Post findFirst
*/
export type FindFirstPostArgs = {
/**
* Select specific fields to fetch from the Post
**/
select?: XOR<PostSelect, null>
/**
* Choose, which related nodes to fetch as well.
**/
include?: XOR<PostInclude, null>
/**
* Filter, which Post to fetch.
**/
where?: PostWhereInput
orderBy?: XOR<Enumerable<PostOrderByInput>, PostOrderByInput>
cursor?: PostWhereUniqueInput
take?: number
skip?: number
distinct?: Enumerable<PostDistinctFieldEnum>
}
We have a few spots on the generated Prisma Client, which are not yet covered with JSDoc comments: