Interface IntrospectionInputValue

interface IntrospectionInputValue {
    name: string;
    description?: null | string;
    type: IntrospectionTypeRef;
    defaultValue?: null | string;
}

Properties

name: string
description?: null | string
defaultValue?: null | string