これらの手順を実行します。つまり、最初に 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 */
アイデア?