import type { GraphQLScalarType } from 'graphql'; import type { SchemaTypes } from '../types'; import { ScalarRef } from './scalar'; export class BuiltinScalarRef extends ScalarRef { type; constructor(type: GraphQLScalarType) { super(type.name); this.type = type; } }