Skip to content

Add more jsdoc to Prisma Client #4344

@timsuchanek

Description

@timsuchanek

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>
  }

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions