@robert-brightline/auth-db - v0.0.21
    Preparing search index...

    Type Alias UserFindFirstArgs<ExtArgs>

    User findFirst

    type UserFindFirstArgs<
        ExtArgs extends
            runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
    > = {
        cursor?: UserWhereUniqueInput;
        distinct?: Prisma.UserScalarFieldEnum
        | Prisma.UserScalarFieldEnum[];
        include?: UserInclude<ExtArgs> | null;
        omit?: UserOmit<ExtArgs> | null;
        orderBy?: UserOrderByWithRelationInput | UserOrderByWithRelationInput[];
        select?: UserSelect<ExtArgs> | null;
        skip?: number;
        take?: number;
        where?: UserWhereInput;
    }

    Type Parameters

    • ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs
    Index

    Properties

    Cursor Docs

    Sets the position for searching for Users.

    Distinct Docs

    Filter by unique combinations of Users.

    include?: UserInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    omit?: UserOmit<ExtArgs> | null

    Omit specific fields from the User

    Sorting Docs

    Determine the order of Users to fetch.

    select?: UserSelect<ExtArgs> | null

    Select specific fields to fetch from the User

    skip?: number

    Pagination Docs

    Skip the first n Users.

    take?: number

    Pagination Docs

    Take ±n Users from the position of the cursor.

    Filter, which User to fetch.