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

    Type Alias ResourceAggregateArgs<ExtArgs>

    type ResourceAggregateArgs<
        ExtArgs extends
            runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
    > = {
        _avg?: ResourceAvgAggregateInputType;
        _count?: true
        | ResourceCountAggregateInputType;
        _max?: ResourceMaxAggregateInputType;
        _min?: ResourceMinAggregateInputType;
        _sum?: ResourceSumAggregateInputType;
        cursor?: ResourceWhereUniqueInput;
        orderBy?:
            | ResourceOrderByWithRelationInput
            | ResourceOrderByWithRelationInput[];
        skip?: number;
        take?: number;
        where?: ResourceWhereInput;
    }

    Type Parameters

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

    Properties

    Aggregation Docs

    Select which fields to average

    Aggregation Docs

    Count returned Resources

    Aggregation Docs

    Select which fields to find the maximum value

    Aggregation Docs

    Select which fields to find the minimum value

    Aggregation Docs

    Select which fields to sum

    Cursor Docs

    Sets the start position

    Sorting Docs

    Determine the order of Resources to fetch.

    skip?: number

    Pagination Docs

    Skip the first n Resources.

    take?: number

    Pagination Docs

    Take ±n Resources from the position of the cursor.

    Filter which Resource to aggregate.