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