0
私のプロジェクトでは、GraphQL
フロータイプを使用しようとしています。GraphQLフロータイプの使用方法
たとえば、私はインスタンスを コンストラクタパラメータとして期待するクラスを持っています。すなわち:しかし
4: import type { GraphQLSchema } from 'graphql';
^^^^^^^^^
graphql. Required module not found
フォルダnode_modules/graphql/
を見たとき、私はそこにあるすべての.flow
のファイルを見ることができます:
import type { GraphQLSchema } from 'graphql';
type MyGraphQLConfig = {
schemaFiles: string,
resolvers: Object,
mocks: Object,
enableMocks: boolean
}
class GraphQL {
graphQLSchema: GraphQLSchema;
configs: MyGraphQLConfig;
constructor(configs: MyGraphQLConfig, graphQLSchema: GraphQLSchema) {
this.graphQLSchema = null;
this.configs = configs;
}
getSchema() : GraphQLSchema {
return this.graphQLSchema;
}
}
私は、このファイルにflow check
コマンドを実行すると、私は次のエラーを取得します。
紛失しているものがありますか?
'.flowconfig'から' node_modules'をアンコメントしました! – Fabrizio