我试图从类型中获取指令。
架构的一部分:
directive @translates(
type: String
) on OBJECT | FIELD_DEFINITION
type DocumentTranslated @translates(type: Document) {
...
}
阅读架构:
info.schema.getTypeMap()['DocumentTranslated'].astNode
结果:
{ kind: 'ObjectTypeDefinition',
description: undefined,
name:
{ kind: 'Name',
value: 'DocumentTranslated',
loc: { start: 8893, end: 8911 } },
interfaces: [],
directives: [],
fields:
我不明白为什么AST中没有指令?我怎样才能读取类型指令?