Type alias FieldNode

FieldNode: Or<FieldNode, {
    alias?: NameNode;
    arguments?: ReadonlyArray<ArgumentNode>;
    directives?: ReadonlyArray<DirectiveNode>;
    kind: FIELD;
    loc?: Location;
    name: NameNode;
    selectionSet?: SelectionSetNode;
}>

Generated using TypeDoc