UNPKG

@cran/lib.gql.core

Version:

GQL Core Functionality

15 lines (12 loc) 306 B
import type { GraphQLArgument } from "graphql"; export function createArg ( config: Partial<GraphQLArgument> ): GraphQLArgument { return { description : undefined, defaultValue: null, extensions : undefined, astNode : undefined, ...config, } as const as GraphQLArgument; }