Skip to main content
Module

x/pothos/packages/core/index.ts>completeValue

Pothos GraphQL is library for creating GraphQL schemas in typescript using a strongly typed code first approach
Go to Latest
function completeValue
import { completeValue } from "https://deno.land/x/pothos@release-1713397530/packages/core/index.ts";

Helper for allowing plugins to fulfill the return of the next resolver, without paying the cost of the Promise if not required.

Parameters

valOrPromise: PromiseLike<T> | T
onSuccess: (completedVal: T) => R
optional
onError: (errVal: unknown) => R

Returns

Promise<R> | R