graphql codegen可以自动为挂钩的结果数据字段生成类型吗?

时间:2019-11-06 15:11:26

标签: typescript graphql codegen

我正在使用graphql codegen挂钩,其结果类型为ApolloReactCommon.QueryResult,这意味着它是一个具有dataloadingerror字段的对象。 / p>

通常,我将在其他需要定义其类型的组件中使用data。我目前需要编写类似的内容以获取data类型:

type MyPost = MyPostQueryHookResult['data']

我期望为我创建这种MyPost类型。有没有办法让它自动生成?

我的配置:

generates:
  src/generated/graphql.tsx:
    plugins:
      - "typescript"
      - "typescript-operations"
      - "typescript-react-apollo"
    config:
      withHooks: true

1 个答案:

答案 0 :(得分:0)

执行此操作的最佳方法是在构建查询时使用片段。将为每个片段生成类型,然后可以直接使用它们。

来源:from the main contributor of graphql-codegen