/** * FunctionInvocationAttempt model for ORM client * @generated by @constructive-io/graphql-codegen * DO NOT EDIT - changes will be overwritten */ import { OrmClient } from '../client'; import { QueryBuilder } from '../query-builder'; import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types'; import type { FunctionInvocationAttemptWithRelations, FunctionInvocationAttemptSelect, FunctionInvocationAttemptFilter, FunctionInvocationAttemptOrderBy, CreateFunctionInvocationAttemptInput, FunctionInvocationAttemptPatch } from '../input-types'; export declare class FunctionInvocationAttemptModel { private client; constructor(client: OrmClient); findMany(args: FindManyArgs & { select: S; } & StrictSelect): QueryBuilder<{ functionInvocationAttempts: ConnectionResult>; }>; findFirst(args: FindFirstArgs & { select: S; } & StrictSelect): QueryBuilder<{ functionInvocationAttempt: InferSelectResult | null; }>; findOne(args: { id: string; select: S; } & StrictSelect): QueryBuilder<{ functionInvocationAttempt: InferSelectResult | null; }>; create(args: CreateArgs & { select: S; } & StrictSelect): QueryBuilder<{ createFunctionInvocationAttempt: { functionInvocationAttempt: InferSelectResult; }; }>; update(args: UpdateArgs & { select: S; } & StrictSelect): QueryBuilder<{ updateFunctionInvocationAttempt: { functionInvocationAttempt: InferSelectResult; }; }>; delete(args: DeleteArgs<{ id: string; createdAt: string; }, S> & { select: S; } & StrictSelect): QueryBuilder<{ deleteFunctionInvocationAttempt: { functionInvocationAttempt: InferSelectResult; }; }>; }