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

    Type Alias ResourceFindManyArgs<ExtArgs>

    Resource findMany

    type ResourceFindManyArgs<
        ExtArgs extends
            runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
    > = {
        cursor?: ResourceWhereUniqueInput;
        distinct?: | Prisma.ResourceScalarFieldEnum
        | Prisma.ResourceScalarFieldEnum[];
        include?: ResourceInclude<ExtArgs>
        | null;
        omit?: ResourceOmit<ExtArgs> | null;
        orderBy?:
            | ResourceOrderByWithRelationInput
            | ResourceOrderByWithRelationInput[];
        select?: ResourceSelect<ExtArgs>
        | null;
        skip?: number;
        take?: number;
        where?: ResourceWhereInput;
    }

    Type Parameters

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

    Properties

    Cursor Docs

    Sets the position for listing Resources.

    include?: ResourceInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    omit?: ResourceOmit<ExtArgs> | null

    Omit specific fields from the Resource

    Sorting Docs

    Determine the order of Resources to fetch.

    select?: ResourceSelect<ExtArgs> | null

    Select specific fields to fetch from the Resource

    skip?: number

    Pagination Docs

    Skip the first n Resources.

    take?: number

    Pagination Docs

    Take ±n Resources from the position of the cursor.

    Filter, which Resources to fetch.