DisBot
    Preparing search index...

    Type Alias UsersFindManyArgs<ExtArgs>

    Users findMany

    type UsersFindManyArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        cursor?: UsersWhereUniqueInput;
        distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[];
        include?: UsersInclude<ExtArgs> | null;
        omit?: UsersOmit<ExtArgs> | null;
        orderBy?: UsersOrderByWithRelationInput | UsersOrderByWithRelationInput[];
        select?: UsersSelect<ExtArgs> | null;
        skip?: number;
        take?: number;
        where?: UsersWhereInput;
    }

    Type Parameters

    Index

    Properties

    Cursor Docs

    Sets the position for listing Users.

    include?: UsersInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    omit?: UsersOmit<ExtArgs> | null

    Omit specific fields from the Users

    Sorting Docs

    Determine the order of Users to fetch.

    select?: UsersSelect<ExtArgs> | null

    Select specific fields to fetch from the Users

    skip?: number

    Pagination Docs

    Skip the first n Users.

    take?: number

    Pagination Docs

    Take ±n Users from the position of the cursor.

    Filter, which Users to fetch.