
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;
}
