/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `test` 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 test * */ export type testModel = runtime.Types.Result.DefaultSelection export type AggregateTest = { _count: TestCountAggregateOutputType | null _avg: TestAvgAggregateOutputType | null _sum: TestSumAggregateOutputType | null _min: TestMinAggregateOutputType | null _max: TestMaxAggregateOutputType | null } export type TestAvgAggregateOutputType = { id: number | null c2: number | null } export type TestSumAggregateOutputType = { id: number | null c2: number | null } export type TestMinAggregateOutputType = { id: number | null text: string | null c2: number | null } export type TestMaxAggregateOutputType = { id: number | null text: string | null c2: number | null } export type TestCountAggregateOutputType = { id: number text: number c2: number _all: number } export type TestAvgAggregateInputType = { id?: true c2?: true } export type TestSumAggregateInputType = { id?: true c2?: true } export type TestMinAggregateInputType = { id?: true text?: true c2?: true } export type TestMaxAggregateInputType = { id?: true text?: true c2?: true } export type TestCountAggregateInputType = { id?: true text?: true c2?: true _all?: true } export type TestAggregateArgs = { /** * Filter which test to aggregate. */ where?: Prisma.testWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tests to fetch. */ orderBy?: Prisma.testOrderByWithRelationInput | Prisma.testOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.testWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tests 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` tests. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned tests **/ _count?: true | TestCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: TestAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: TestSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: TestMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: TestMaxAggregateInputType } export type GetTestAggregateType = { [P in keyof T & keyof AggregateTest]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type testGroupByArgs = { where?: Prisma.testWhereInput orderBy?: Prisma.testOrderByWithAggregationInput | Prisma.testOrderByWithAggregationInput[] by: Prisma.TestScalarFieldEnum[] | Prisma.TestScalarFieldEnum having?: Prisma.testScalarWhereWithAggregatesInput take?: number skip?: number _count?: TestCountAggregateInputType | true _avg?: TestAvgAggregateInputType _sum?: TestSumAggregateInputType _min?: TestMinAggregateInputType _max?: TestMaxAggregateInputType } export type TestGroupByOutputType = { id: number text: string c2: number _count: TestCountAggregateOutputType | null _avg: TestAvgAggregateOutputType | null _sum: TestSumAggregateOutputType | null _min: TestMinAggregateOutputType | null _max: TestMaxAggregateOutputType | null } type GetTestGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof TestGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type testWhereInput = { AND?: Prisma.testWhereInput | Prisma.testWhereInput[] OR?: Prisma.testWhereInput[] NOT?: Prisma.testWhereInput | Prisma.testWhereInput[] id?: Prisma.IntFilter<"test"> | number text?: Prisma.StringFilter<"test"> | string c2?: Prisma.IntFilter<"test"> | number } export type testOrderByWithRelationInput = { id?: Prisma.SortOrder text?: Prisma.SortOrder c2?: Prisma.SortOrder _relevance?: Prisma.testOrderByRelevanceInput } export type testWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.testWhereInput | Prisma.testWhereInput[] OR?: Prisma.testWhereInput[] NOT?: Prisma.testWhereInput | Prisma.testWhereInput[] text?: Prisma.StringFilter<"test"> | string c2?: Prisma.IntFilter<"test"> | number }, "id"> export type testOrderByWithAggregationInput = { id?: Prisma.SortOrder text?: Prisma.SortOrder c2?: Prisma.SortOrder _count?: Prisma.testCountOrderByAggregateInput _avg?: Prisma.testAvgOrderByAggregateInput _max?: Prisma.testMaxOrderByAggregateInput _min?: Prisma.testMinOrderByAggregateInput _sum?: Prisma.testSumOrderByAggregateInput } export type testScalarWhereWithAggregatesInput = { AND?: Prisma.testScalarWhereWithAggregatesInput | Prisma.testScalarWhereWithAggregatesInput[] OR?: Prisma.testScalarWhereWithAggregatesInput[] NOT?: Prisma.testScalarWhereWithAggregatesInput | Prisma.testScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"test"> | number text?: Prisma.StringWithAggregatesFilter<"test"> | string c2?: Prisma.IntWithAggregatesFilter<"test"> | number } export type testCreateInput = { text: string c2?: number } export type testUncheckedCreateInput = { id?: number text: string c2?: number } export type testUpdateInput = { text?: Prisma.StringFieldUpdateOperationsInput | string c2?: Prisma.IntFieldUpdateOperationsInput | number } export type testUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number text?: Prisma.StringFieldUpdateOperationsInput | string c2?: Prisma.IntFieldUpdateOperationsInput | number } export type testCreateManyInput = { id?: number text: string c2?: number } export type testUpdateManyMutationInput = { text?: Prisma.StringFieldUpdateOperationsInput | string c2?: Prisma.IntFieldUpdateOperationsInput | number } export type testUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number text?: Prisma.StringFieldUpdateOperationsInput | string c2?: Prisma.IntFieldUpdateOperationsInput | number } export type testOrderByRelevanceInput = { fields: Prisma.testOrderByRelevanceFieldEnum | Prisma.testOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type testCountOrderByAggregateInput = { id?: Prisma.SortOrder text?: Prisma.SortOrder c2?: Prisma.SortOrder } export type testAvgOrderByAggregateInput = { id?: Prisma.SortOrder c2?: Prisma.SortOrder } export type testMaxOrderByAggregateInput = { id?: Prisma.SortOrder text?: Prisma.SortOrder c2?: Prisma.SortOrder } export type testMinOrderByAggregateInput = { id?: Prisma.SortOrder text?: Prisma.SortOrder c2?: Prisma.SortOrder } export type testSumOrderByAggregateInput = { id?: Prisma.SortOrder c2?: Prisma.SortOrder } export type testSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean text?: boolean c2?: boolean }, ExtArgs["result"]["test"]> export type testSelectScalar = { id?: boolean text?: boolean c2?: boolean } export type testOmit = runtime.Types.Extensions.GetOmit<"id" | "text" | "c2", ExtArgs["result"]["test"]> export type $testPayload = { name: "test" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number text: string c2: number }, ExtArgs["result"]["test"]> composites: {} } export type testGetPayload = runtime.Types.Result.GetResult export type testCountArgs = Omit & { select?: TestCountAggregateInputType | true } export interface testDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['test'], meta: { name: 'test' } } /** * Find zero or one Test that matches the filter. * @param {testFindUniqueArgs} args - Arguments to find a Test * @example * // Get one Test * const test = await prisma.test.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__testClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Test that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {testFindUniqueOrThrowArgs} args - Arguments to find a Test * @example * // Get one Test * const test = await prisma.test.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__testClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Test 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 {testFindFirstArgs} args - Arguments to find a Test * @example * // Get one Test * const test = await prisma.test.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__testClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Test 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 {testFindFirstOrThrowArgs} args - Arguments to find a Test * @example * // Get one Test * const test = await prisma.test.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__testClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Tests 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 {testFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Tests * const tests = await prisma.test.findMany() * * // Get first 10 Tests * const tests = await prisma.test.findMany({ take: 10 }) * * // Only select the `id` * const testWithIdOnly = await prisma.test.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Test. * @param {testCreateArgs} args - Arguments to create a Test. * @example * // Create one Test * const Test = await prisma.test.create({ * data: { * // ... data to create a Test * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__testClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Tests. * @param {testCreateManyArgs} args - Arguments to create many Tests. * @example * // Create many Tests * const test = await prisma.test.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Test. * @param {testDeleteArgs} args - Arguments to delete one Test. * @example * // Delete one Test * const Test = await prisma.test.delete({ * where: { * // ... filter to delete one Test * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__testClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Test. * @param {testUpdateArgs} args - Arguments to update one Test. * @example * // Update one Test * const test = await prisma.test.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__testClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Tests. * @param {testDeleteManyArgs} args - Arguments to filter Tests to delete. * @example * // Delete a few Tests * const { count } = await prisma.test.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Tests. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {testUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Tests * const test = await prisma.test.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Test. * @param {testUpsertArgs} args - Arguments to update or create a Test. * @example * // Update or create a Test * const test = await prisma.test.upsert({ * create: { * // ... data to create a Test * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Test we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__testClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Tests. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {testCountArgs} args - Arguments to filter Tests to count. * @example * // Count the number of Tests * const count = await prisma.test.count({ * where: { * // ... the filter for the Tests 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 Test. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {TestAggregateArgs} 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 Test. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {testGroupByArgs} 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 testGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: testGroupByArgs['orderBy'] } : { orderBy?: testGroupByArgs['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 ? GetTestGroupByPayload : Prisma.PrismaPromise /** * Fields of the test model */ readonly fields: testFieldRefs; } /** * The delegate class that acts as a "Promise-like" for test. * 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__testClient 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 test model */ export interface testFieldRefs { readonly id: Prisma.FieldRef<"test", 'Int'> readonly text: Prisma.FieldRef<"test", 'String'> readonly c2: Prisma.FieldRef<"test", 'Int'> } // Custom InputTypes /** * test findUnique */ export type testFindUniqueArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null /** * Filter, which test to fetch. */ where: Prisma.testWhereUniqueInput } /** * test findUniqueOrThrow */ export type testFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null /** * Filter, which test to fetch. */ where: Prisma.testWhereUniqueInput } /** * test findFirst */ export type testFindFirstArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null /** * Filter, which test to fetch. */ where?: Prisma.testWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tests to fetch. */ orderBy?: Prisma.testOrderByWithRelationInput | Prisma.testOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for tests. */ cursor?: Prisma.testWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tests 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` tests. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of tests. */ distinct?: Prisma.TestScalarFieldEnum | Prisma.TestScalarFieldEnum[] } /** * test findFirstOrThrow */ export type testFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null /** * Filter, which test to fetch. */ where?: Prisma.testWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tests to fetch. */ orderBy?: Prisma.testOrderByWithRelationInput | Prisma.testOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for tests. */ cursor?: Prisma.testWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tests 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` tests. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of tests. */ distinct?: Prisma.TestScalarFieldEnum | Prisma.TestScalarFieldEnum[] } /** * test findMany */ export type testFindManyArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null /** * Filter, which tests to fetch. */ where?: Prisma.testWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tests to fetch. */ orderBy?: Prisma.testOrderByWithRelationInput | Prisma.testOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing tests. */ cursor?: Prisma.testWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tests 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` tests. */ skip?: number distinct?: Prisma.TestScalarFieldEnum | Prisma.TestScalarFieldEnum[] } /** * test create */ export type testCreateArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null /** * The data needed to create a test. */ data: Prisma.XOR } /** * test createMany */ export type testCreateManyArgs = { /** * The data used to create many tests. */ data: Prisma.testCreateManyInput | Prisma.testCreateManyInput[] skipDuplicates?: boolean } /** * test update */ export type testUpdateArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null /** * The data needed to update a test. */ data: Prisma.XOR /** * Choose, which test to update. */ where: Prisma.testWhereUniqueInput } /** * test updateMany */ export type testUpdateManyArgs = { /** * The data used to update tests. */ data: Prisma.XOR /** * Filter which tests to update */ where?: Prisma.testWhereInput /** * Limit how many tests to update. */ limit?: number } /** * test upsert */ export type testUpsertArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null /** * The filter to search for the test to update in case it exists. */ where: Prisma.testWhereUniqueInput /** * In case the test found by the `where` argument doesn't exist, create a new test with this data. */ create: Prisma.XOR /** * In case the test was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * test delete */ export type testDeleteArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null /** * Filter which test to delete. */ where: Prisma.testWhereUniqueInput } /** * test deleteMany */ export type testDeleteManyArgs = { /** * Filter which tests to delete */ where?: Prisma.testWhereInput /** * Limit how many tests to delete. */ limit?: number } /** * test without action */ export type testDefaultArgs = { /** * Select specific fields to fetch from the test */ select?: Prisma.testSelect | null /** * Omit specific fields from the test */ omit?: Prisma.testOmit | null }