UNPKG

@pothos/core

Version:

Pothos (formerly GiraphQL) is a plugin based schema builder for creating code-first GraphQL schemas in typescript

7 lines (5 loc) 217 B
import type { SchemaTypes } from '../types'; import { ObjectRef } from './object'; export class MutationRef<Types extends SchemaTypes> extends ObjectRef<Types, Types['Root']> { override kind = 'Object' as const; }