Interface IntrospectionDirective

interface IntrospectionDirective {
    name: string;
    description?: null | string;
    locations: readonly string[];
    args: readonly IntrospectionInputValue[];
}

Properties

name: string
description?: null | string
locations: readonly string[]
args: readonly IntrospectionInputValue[]