/** * PlatformResourceInstallation 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 { PlatformResourceInstallationWithRelations, PlatformResourceInstallationSelect, PlatformResourceInstallationFilter, PlatformResourceInstallationOrderBy, CreatePlatformResourceInstallationInput, PlatformResourceInstallationPatch } from '../input-types'; export declare class PlatformResourceInstallationModel { private client; constructor(client: OrmClient); findMany(args: FindManyArgs & { select: S; } & StrictSelect): QueryBuilder<{ platformResourceInstallations: ConnectionResult>; }>; findFirst(args: FindFirstArgs & { select: S; } & StrictSelect): QueryBuilder<{ platformResourceInstallation: InferSelectResult | null; }>; findOne(args: { id: string; select: S; } & StrictSelect): QueryBuilder<{ platformResourceInstallation: InferSelectResult | null; }>; create(args: CreateArgs & { select: S; } & StrictSelect): QueryBuilder<{ createPlatformResourceInstallation: { platformResourceInstallation: InferSelectResult; }; }>; update(args: UpdateArgs & { select: S; } & StrictSelect): QueryBuilder<{ updatePlatformResourceInstallation: { platformResourceInstallation: InferSelectResult; }; }>; delete(args: DeleteArgs<{ id: string; }, S> & { select: S; } & StrictSelect): QueryBuilder<{ deletePlatformResourceInstallation: { platformResourceInstallation: InferSelectResult; }; }>; }