UNPKG

graphile-utils

Version:
9 lines (8 loc) 257 B
import type { Plugin } from "graphile-build"; interface ChangeNullabilityRules { [typeName: string]: { [fieldName: string]: boolean; }; } export default function makeChangeNullabilityPlugin(rules: ChangeNullabilityRules): Plugin; export {};