/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `account_group` model and its related types. * * 🟢 You can import this file directly. */ import type * as runtime from "@prisma/client/runtime/client" import type * as $Enums from "../enums" import type * as Prisma from "../internal/prismaNamespace" /** * Model account_group * */ export type account_groupModel = runtime.Types.Result.DefaultSelection export type AggregateAccount_group = { _count: Account_groupCountAggregateOutputType | null _avg: Account_groupAvgAggregateOutputType | null _sum: Account_groupSumAggregateOutputType | null _min: Account_groupMinAggregateOutputType | null _max: Account_groupMaxAggregateOutputType | null } export type Account_groupAvgAggregateOutputType = { id: number | null date_orig: number | null } export type Account_groupSumAggregateOutputType = { id: number | null date_orig: bigint | null } export type Account_groupMinAggregateOutputType = { id: number | null date_orig: bigint | null group_name: string | null } export type Account_groupMaxAggregateOutputType = { id: number | null date_orig: bigint | null group_name: string | null } export type Account_groupCountAggregateOutputType = { id: number date_orig: number group_name: number _all: number } export type Account_groupAvgAggregateInputType = { id?: true date_orig?: true } export type Account_groupSumAggregateInputType = { id?: true date_orig?: true } export type Account_groupMinAggregateInputType = { id?: true date_orig?: true group_name?: true } export type Account_groupMaxAggregateInputType = { id?: true date_orig?: true group_name?: true } export type Account_groupCountAggregateInputType = { id?: true date_orig?: true group_name?: true _all?: true } export type Account_groupAggregateArgs = { /** * Filter which account_group to aggregate. */ where?: Prisma.account_groupWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of account_groups to fetch. */ orderBy?: Prisma.account_groupOrderByWithRelationInput | Prisma.account_groupOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.account_groupWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` account_groups from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` account_groups. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned account_groups **/ _count?: true | Account_groupCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Account_groupAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Account_groupSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Account_groupMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Account_groupMaxAggregateInputType } export type GetAccount_groupAggregateType = { [P in keyof T & keyof AggregateAccount_group]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type account_groupGroupByArgs = { where?: Prisma.account_groupWhereInput orderBy?: Prisma.account_groupOrderByWithAggregationInput | Prisma.account_groupOrderByWithAggregationInput[] by: Prisma.Account_groupScalarFieldEnum[] | Prisma.Account_groupScalarFieldEnum having?: Prisma.account_groupScalarWhereWithAggregatesInput take?: number skip?: number _count?: Account_groupCountAggregateInputType | true _avg?: Account_groupAvgAggregateInputType _sum?: Account_groupSumAggregateInputType _min?: Account_groupMinAggregateInputType _max?: Account_groupMaxAggregateInputType } export type Account_groupGroupByOutputType = { id: number date_orig: bigint | null group_name: string | null _count: Account_groupCountAggregateOutputType | null _avg: Account_groupAvgAggregateOutputType | null _sum: Account_groupSumAggregateOutputType | null _min: Account_groupMinAggregateOutputType | null _max: Account_groupMaxAggregateOutputType | null } type GetAccount_groupGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Account_groupGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type account_groupWhereInput = { AND?: Prisma.account_groupWhereInput | Prisma.account_groupWhereInput[] OR?: Prisma.account_groupWhereInput[] NOT?: Prisma.account_groupWhereInput | Prisma.account_groupWhereInput[] id?: Prisma.IntFilter<"account_group"> | number date_orig?: Prisma.BigIntNullableFilter<"account_group"> | bigint | number | null group_name?: Prisma.StringNullableFilter<"account_group"> | string | null } export type account_groupOrderByWithRelationInput = { id?: Prisma.SortOrder date_orig?: Prisma.SortOrderInput | Prisma.SortOrder group_name?: Prisma.SortOrderInput | Prisma.SortOrder _relevance?: Prisma.account_groupOrderByRelevanceInput } export type account_groupWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.account_groupWhereInput | Prisma.account_groupWhereInput[] OR?: Prisma.account_groupWhereInput[] NOT?: Prisma.account_groupWhereInput | Prisma.account_groupWhereInput[] date_orig?: Prisma.BigIntNullableFilter<"account_group"> | bigint | number | null group_name?: Prisma.StringNullableFilter<"account_group"> | string | null }, "id"> export type account_groupOrderByWithAggregationInput = { id?: Prisma.SortOrder date_orig?: Prisma.SortOrderInput | Prisma.SortOrder group_name?: Prisma.SortOrderInput | Prisma.SortOrder _count?: Prisma.account_groupCountOrderByAggregateInput _avg?: Prisma.account_groupAvgOrderByAggregateInput _max?: Prisma.account_groupMaxOrderByAggregateInput _min?: Prisma.account_groupMinOrderByAggregateInput _sum?: Prisma.account_groupSumOrderByAggregateInput } export type account_groupScalarWhereWithAggregatesInput = { AND?: Prisma.account_groupScalarWhereWithAggregatesInput | Prisma.account_groupScalarWhereWithAggregatesInput[] OR?: Prisma.account_groupScalarWhereWithAggregatesInput[] NOT?: Prisma.account_groupScalarWhereWithAggregatesInput | Prisma.account_groupScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"account_group"> | number date_orig?: Prisma.BigIntNullableWithAggregatesFilter<"account_group"> | bigint | number | null group_name?: Prisma.StringNullableWithAggregatesFilter<"account_group"> | string | null } export type account_groupCreateInput = { date_orig?: bigint | number | null group_name?: string | null } export type account_groupUncheckedCreateInput = { id?: number date_orig?: bigint | number | null group_name?: string | null } export type account_groupUpdateInput = { date_orig?: Prisma.NullableBigIntFieldUpdateOperationsInput | bigint | number | null group_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null } export type account_groupUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number date_orig?: Prisma.NullableBigIntFieldUpdateOperationsInput | bigint | number | null group_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null } export type account_groupCreateManyInput = { id?: number date_orig?: bigint | number | null group_name?: string | null } export type account_groupUpdateManyMutationInput = { date_orig?: Prisma.NullableBigIntFieldUpdateOperationsInput | bigint | number | null group_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null } export type account_groupUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number date_orig?: Prisma.NullableBigIntFieldUpdateOperationsInput | bigint | number | null group_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null } export type account_groupOrderByRelevanceInput = { fields: Prisma.account_groupOrderByRelevanceFieldEnum | Prisma.account_groupOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type account_groupCountOrderByAggregateInput = { id?: Prisma.SortOrder date_orig?: Prisma.SortOrder group_name?: Prisma.SortOrder } export type account_groupAvgOrderByAggregateInput = { id?: Prisma.SortOrder date_orig?: Prisma.SortOrder } export type account_groupMaxOrderByAggregateInput = { id?: Prisma.SortOrder date_orig?: Prisma.SortOrder group_name?: Prisma.SortOrder } export type account_groupMinOrderByAggregateInput = { id?: Prisma.SortOrder date_orig?: Prisma.SortOrder group_name?: Prisma.SortOrder } export type account_groupSumOrderByAggregateInput = { id?: Prisma.SortOrder date_orig?: Prisma.SortOrder } export type account_groupSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean date_orig?: boolean group_name?: boolean }, ExtArgs["result"]["account_group"]> export type account_groupSelectScalar = { id?: boolean date_orig?: boolean group_name?: boolean } export type account_groupOmit = runtime.Types.Extensions.GetOmit<"id" | "date_orig" | "group_name", ExtArgs["result"]["account_group"]> export type $account_groupPayload = { name: "account_group" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number date_orig: bigint | null group_name: string | null }, ExtArgs["result"]["account_group"]> composites: {} } export type account_groupGetPayload = runtime.Types.Result.GetResult export type account_groupCountArgs = Omit & { select?: Account_groupCountAggregateInputType | true } export interface account_groupDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['account_group'], meta: { name: 'account_group' } } /** * Find zero or one Account_group that matches the filter. * @param {account_groupFindUniqueArgs} args - Arguments to find a Account_group * @example * // Get one Account_group * const account_group = await prisma.account_group.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__account_groupClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Account_group that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {account_groupFindUniqueOrThrowArgs} args - Arguments to find a Account_group * @example * // Get one Account_group * const account_group = await prisma.account_group.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__account_groupClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Account_group that matches the filter. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {account_groupFindFirstArgs} args - Arguments to find a Account_group * @example * // Get one Account_group * const account_group = await prisma.account_group.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__account_groupClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Account_group that matches the filter or * throw `PrismaKnownClientError` with `P2025` code if no matches were found. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {account_groupFindFirstOrThrowArgs} args - Arguments to find a Account_group * @example * // Get one Account_group * const account_group = await prisma.account_group.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__account_groupClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Account_groups that matches the filter. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {account_groupFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Account_groups * const account_groups = await prisma.account_group.findMany() * * // Get first 10 Account_groups * const account_groups = await prisma.account_group.findMany({ take: 10 }) * * // Only select the `id` * const account_groupWithIdOnly = await prisma.account_group.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Account_group. * @param {account_groupCreateArgs} args - Arguments to create a Account_group. * @example * // Create one Account_group * const Account_group = await prisma.account_group.create({ * data: { * // ... data to create a Account_group * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__account_groupClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Account_groups. * @param {account_groupCreateManyArgs} args - Arguments to create many Account_groups. * @example * // Create many Account_groups * const account_group = await prisma.account_group.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Account_group. * @param {account_groupDeleteArgs} args - Arguments to delete one Account_group. * @example * // Delete one Account_group * const Account_group = await prisma.account_group.delete({ * where: { * // ... filter to delete one Account_group * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__account_groupClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Account_group. * @param {account_groupUpdateArgs} args - Arguments to update one Account_group. * @example * // Update one Account_group * const account_group = await prisma.account_group.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__account_groupClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Account_groups. * @param {account_groupDeleteManyArgs} args - Arguments to filter Account_groups to delete. * @example * // Delete a few Account_groups * const { count } = await prisma.account_group.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Account_groups. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {account_groupUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Account_groups * const account_group = await prisma.account_group.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Account_group. * @param {account_groupUpsertArgs} args - Arguments to update or create a Account_group. * @example * // Update or create a Account_group * const account_group = await prisma.account_group.upsert({ * create: { * // ... data to create a Account_group * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Account_group we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__account_groupClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Account_groups. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {account_groupCountArgs} args - Arguments to filter Account_groups to count. * @example * // Count the number of Account_groups * const count = await prisma.account_group.count({ * where: { * // ... the filter for the Account_groups we want to count * } * }) **/ count( args?: Prisma.Subset, ): Prisma.PrismaPromise< T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType : number > /** * Allows you to perform aggregations operations on a Account_group. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Account_groupAggregateArgs} args - Select which aggregations you would like to apply and on what fields. * @example * // Ordered by age ascending * // Where email contains prisma.io * // Limited to the 10 users * const aggregations = await prisma.user.aggregate({ * _avg: { * age: true, * }, * where: { * email: { * contains: "prisma.io", * }, * }, * orderBy: { * age: "asc", * }, * take: 10, * }) **/ aggregate(args: Prisma.Subset): Prisma.PrismaPromise> /** * Group by Account_group. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {account_groupGroupByArgs} args - Group by arguments. * @example * // Group by city, order by createdAt, get count * const result = await prisma.user.groupBy({ * by: ['city', 'createdAt'], * orderBy: { * createdAt: true * }, * _count: { * _all: true * }, * }) * **/ groupBy< T extends account_groupGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: account_groupGroupByArgs['orderBy'] } : { orderBy?: account_groupGroupByArgs['orderBy'] }, OrderFields extends Prisma.ExcludeUnderscoreKeys>>, ByFields extends Prisma.MaybeTupleToUnion, ByValid extends Prisma.Has, HavingFields extends Prisma.GetHavingFields, HavingValid extends Prisma.Has, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? { [P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [ Error, 'Field ', P, ` in "having" needs to be provided in "by"`, ] }[HavingFields] : 'take' extends Prisma.Keys ? 'orderBy' extends Prisma.Keys ? ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"` }[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys ? 'orderBy' extends Prisma.Keys ? ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"` }[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"` }[OrderFields] >(args: Prisma.SubsetIntersection & InputErrors): {} extends InputErrors ? GetAccount_groupGroupByPayload : Prisma.PrismaPromise /** * Fields of the account_group model */ readonly fields: account_groupFieldRefs; } /** * The delegate class that acts as a "Promise-like" for account_group. * Why is this prefixed with `Prisma__`? * Because we want to prevent naming conflicts as mentioned in * https://github.com/prisma/prisma-client-js/issues/707 */ export interface Prisma__account_groupClient extends Prisma.PrismaPromise { readonly [Symbol.toStringTag]: "PrismaPromise" /** * Attaches callbacks for the resolution and/or rejection of the Promise. * @param onfulfilled The callback to execute when the Promise is resolved. * @param onrejected The callback to execute when the Promise is rejected. * @returns A Promise for the completion of which ever callback is executed. */ then(onfulfilled?: ((value: T) => TResult1 | PromiseLike) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise /** * Attaches a callback for only the rejection of the Promise. * @param onrejected The callback to execute when the Promise is rejected. * @returns A Promise for the completion of the callback. */ catch(onrejected?: ((reason: any) => TResult | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise /** * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The * resolved value cannot be modified from the callback. * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected). * @returns A Promise for the completion of the callback. */ finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise } /** * Fields of the account_group model */ export interface account_groupFieldRefs { readonly id: Prisma.FieldRef<"account_group", 'Int'> readonly date_orig: Prisma.FieldRef<"account_group", 'BigInt'> readonly group_name: Prisma.FieldRef<"account_group", 'String'> } // Custom InputTypes /** * account_group findUnique */ export type account_groupFindUniqueArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null /** * Filter, which account_group to fetch. */ where: Prisma.account_groupWhereUniqueInput } /** * account_group findUniqueOrThrow */ export type account_groupFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null /** * Filter, which account_group to fetch. */ where: Prisma.account_groupWhereUniqueInput } /** * account_group findFirst */ export type account_groupFindFirstArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null /** * Filter, which account_group to fetch. */ where?: Prisma.account_groupWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of account_groups to fetch. */ orderBy?: Prisma.account_groupOrderByWithRelationInput | Prisma.account_groupOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for account_groups. */ cursor?: Prisma.account_groupWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` account_groups from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` account_groups. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of account_groups. */ distinct?: Prisma.Account_groupScalarFieldEnum | Prisma.Account_groupScalarFieldEnum[] } /** * account_group findFirstOrThrow */ export type account_groupFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null /** * Filter, which account_group to fetch. */ where?: Prisma.account_groupWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of account_groups to fetch. */ orderBy?: Prisma.account_groupOrderByWithRelationInput | Prisma.account_groupOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for account_groups. */ cursor?: Prisma.account_groupWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` account_groups from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` account_groups. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of account_groups. */ distinct?: Prisma.Account_groupScalarFieldEnum | Prisma.Account_groupScalarFieldEnum[] } /** * account_group findMany */ export type account_groupFindManyArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null /** * Filter, which account_groups to fetch. */ where?: Prisma.account_groupWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of account_groups to fetch. */ orderBy?: Prisma.account_groupOrderByWithRelationInput | Prisma.account_groupOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing account_groups. */ cursor?: Prisma.account_groupWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` account_groups from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` account_groups. */ skip?: number distinct?: Prisma.Account_groupScalarFieldEnum | Prisma.Account_groupScalarFieldEnum[] } /** * account_group create */ export type account_groupCreateArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null /** * The data needed to create a account_group. */ data?: Prisma.XOR } /** * account_group createMany */ export type account_groupCreateManyArgs = { /** * The data used to create many account_groups. */ data: Prisma.account_groupCreateManyInput | Prisma.account_groupCreateManyInput[] skipDuplicates?: boolean } /** * account_group update */ export type account_groupUpdateArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null /** * The data needed to update a account_group. */ data: Prisma.XOR /** * Choose, which account_group to update. */ where: Prisma.account_groupWhereUniqueInput } /** * account_group updateMany */ export type account_groupUpdateManyArgs = { /** * The data used to update account_groups. */ data: Prisma.XOR /** * Filter which account_groups to update */ where?: Prisma.account_groupWhereInput /** * Limit how many account_groups to update. */ limit?: number } /** * account_group upsert */ export type account_groupUpsertArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null /** * The filter to search for the account_group to update in case it exists. */ where: Prisma.account_groupWhereUniqueInput /** * In case the account_group found by the `where` argument doesn't exist, create a new account_group with this data. */ create: Prisma.XOR /** * In case the account_group was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * account_group delete */ export type account_groupDeleteArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null /** * Filter which account_group to delete. */ where: Prisma.account_groupWhereUniqueInput } /** * account_group deleteMany */ export type account_groupDeleteManyArgs = { /** * Filter which account_groups to delete */ where?: Prisma.account_groupWhereInput /** * Limit how many account_groups to delete. */ limit?: number } /** * account_group without action */ export type account_groupDefaultArgs = { /** * Select specific fields to fetch from the account_group */ select?: Prisma.account_groupSelect | null /** * Omit specific fields from the account_group */ omit?: Prisma.account_groupOmit | null }