Skip to main content
Module

x/graphql_tools/deps.ts>defaultTypeResolver

[DEPRECATED] 🦕 Useful tools to create and manipulate GraphQL schemas. Deno port of `graphql-tools` library
Latest
variable defaultTypeResolver
import { defaultTypeResolver } from "https://deno.land/x/graphql_tools@0.0.4-deprecated/deps.ts";

If a resolveType function is not given, then a default resolve behavior is used which attempts two strategies:

First, See if the provided value has a __typename field defined, if so, use that value as name of the resolved type.

Otherwise, test each possible type for the abstract type by calling isTypeOf for the object being coerced, returning the first type that matches.