Graphql:从类型中读取SDL指令

时间:2018-06-09 16:34:13

标签: graphql graphql-js

我试图从类型中获取指令。

架构的一部分:

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中没有指令?我怎样才能读取类型指令?

0 个答案:

没有答案