/** * PlatformFunctionInvocationAttempt 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 { PlatformFunctionInvocationAttemptWithRelations, PlatformFunctionInvocationAttemptSelect, PlatformFunctionInvocationAttemptFilter, PlatformFunctionInvocationAttemptOrderBy, CreatePlatformFunctionInvocationAttemptInput, PlatformFunctionInvocationAttemptPatch } from '../input-types'; export declare class PlatformFunctionInvocationAttemptModel { private client; constructor(client: OrmClient); findMany(args: FindManyArgs & { select: S; } & StrictSelect): QueryBuilder<{ platformFunctionInvocationAttempts: ConnectionResult>; }>; findFirst(args: FindFirstArgs & { select: S; } & StrictSelect): QueryBuilder<{ platformFunctionInvocationAttempt: InferSelectResult | null; }>; findOne(args: { id: string; select: S; } & StrictSelect): QueryBuilder<{ platformFunctionInvocationAttempt: InferSelectResult | null; }>; create(args: CreateArgs & { select: S; } & StrictSelect): QueryBuilder<{ createPlatformFunctionInvocationAttempt: { platformFunctionInvocationAttempt: InferSelectResult; }; }>; update(args: UpdateArgs & { select: S; } & StrictSelect): QueryBuilder<{ updatePlatformFunctionInvocationAttempt: { platformFunctionInvocationAttempt: InferSelectResult; }; }>; delete(args: DeleteArgs<{ id: string; createdAt: string; }, S> & { select: S; } & StrictSelect): QueryBuilder<{ deletePlatformFunctionInvocationAttempt: { platformFunctionInvocationAttempt: InferSelectResult; }; }>; }