4

Apollo-Link-Schema を使用した ApolloClient を使用した React アプリケーションがあります。アプリケーションはローカルでは正常に動作しますが、ステージング環境 (GOCD を使用) では次のエラーが発生します。

Uncaught Error: Cannot use e "__Schema" from another module or realm.

Ensure that there is only one instance of "graphql" in the node_modules
directory. If different versions of "graphql" are the dependencies of other
relied on modules, use "resolutions" to ensure only one version is installed.

https://yarnpkg.com/en/docs/selective-version-resolutions

Duplicate "graphql" modules cannot be used at the same time since different
versions may have different capabilities and behavior. The data from one
version used in the function from another could produce confusing and
spurious results.
    at t.a (instanceOf.mjs:21)
    at C (definition.mjs:37)
    at _ (definition.mjs:22)
    at X (definition.mjs:284)
    at J (definition.mjs:287)
    at new Y (definition.mjs:252)
    at Y (definition.mjs:254)
    at Object.<anonymous> (introspection.mjs:459)
    at u (NominationsApprovals.module.js:80)
    at Object.<anonymous> (validate.mjs:1)

依存関係は糸でインストールされresolutionsます。フィールドをpackage.jsonに追加しました。

    "resolutions": {
        "graphql": "^14.5.8"
    },

yarn.lock を確認したところ、graphql パッケージの参照が 1 つしか見つかりませんでした。 npm ls graphql重複は表示されません。

おそらくwebpackのビルドの問題だと思いました-ステージング用に別のビルドスクリプトを持っていますが、それをローカルで実行しても、反応アプリケーションをそのバンドルで実行できます。

これを修正するのに役立つ何か他のことを提案できますか?

4

6 に答える 6