deno.land / x / pothos@release-1713397530 / packages / core / fieldUtils / mutation.ts
123456789// @ts-nocheckimport { SchemaTypes } from '../types/index.ts';import RootFieldBuilder from './root.ts';export default class MutationFieldBuilder<Types extends SchemaTypes, ParentShape> extends RootFieldBuilder<Types, ParentShape, "Mutation"> { constructor(builder: PothosSchemaTypes.SchemaBuilder<Types>) { super("Mutation", builder, "Mutation", "Object"); }}
Version Info