@cran/gql.reflect
Version:
Cranberry Introspection Utilities for GraphQL
10 lines (9 loc) • 502 B
TypeScript
import type { ReflectField } from "./ReflectField";
import type { ReflectInput } from "./ReflectInput";
import type { ReflectSchema } from "./ReflectSchema";
import type { _InputField } from "../input/_InputField";
import { ReflectProperty } from "./ReflectProperty";
export declare class ReflectInputField extends ReflectProperty<_InputField, ReflectInput | ReflectField> {
readonly default: string | null;
constructor($: ReflectSchema, _: _InputField, source: ReflectInput | ReflectField);
}