导入未知指令 dbquery、sdl

Import of Unknown directives dbquery, sdl

提问人:Bulatron 提问时间:9/14/2022 最后编辑:Bulatron 更新时间:9/14/2022 访问量:53

问:

我正在使用 Stepzen,它生成了 graphql 文件,但是,所有这些文件都有错误:

stepzen/index.graphql

schema @sdl(files: ["postgresql/index.graphql"]) {
  query: Query
}

stepzen/postgresql/index.graphql

type Query {
  getCommentList: [Comment]
    @dbquery(
      type: "postgresql"
      schema: "public"
      table: "comment"
      configuration: "postgresql_config"
    )
 }

我不明白如何正确导入它们以修复错误。 对不起,如果这是一个愚蠢的问题......

先谢谢你!

javascript graphql 使用指令

评论


答: 暂无答案