naystack - v1.5.10
    Preparing search index...

    Type Alias FieldResponseType

    FieldResponseType: Awaited<ReturnType<T["call"]>>

    Infers the TypeScript return type of a field resolver definition's .call() method. Use this to type the resolved field value.

    import type { FieldResponseType } from "naystack/graphql";
    import type organizationsField from "./resolvers/organizations-field";

    type Orgs = FieldResponseType<typeof organizationsField>;