2

これらの手順を実行します。つまり、最初に json を作成します。

apollo-codegen introspect-schema schema.graphqls --output schema.json

これにより、次の結果が得られます。

{
  "data": {
    "__schema": {
      "queryType": {
        "name": "Query"
      },
      "mutationType": null,
      "subscriptionType": null,
      "types": [
        { 
          "kind": "OBJECT",
          "name": "Query",
          "description": "",
          "fields": [
            {

              ...

しかし、私が実行した後:

 apollo-codegen generate **/*.graphqls --schema schema.json --target typescript --output schema.ts

schema.tsのタイプ ファイルを取得します。

/* tslint:disable */
//  This file was automatically generated and should not be edited.
/* tslint:enable */

アイデア?

4

1 に答える 1