私はgraphQLクエリを次のようにインポートします:
import {getStudents} from'./../graphql/Queries.graphql'
クエリ.graphql ファイル:
query getStudents($schoolID: Int!){
allStudents(schoolId: $schoolID){
pickUpLat
pickUpLng
}
}
しかし、次のようにクエリをコンポーネントに渡そうとすると:
export default graphql(getStudents, {
options: (props) => ({ variables: { schoolID: props.schoolID } })
})( StudentsMap );
次のエラーが表示されます。
Uncaught Error: Argument of undefined passed to parser was not a valid GraphQL DocumentNode. You may need to use 'graphql-tag' or another method to convert your operation into a document
at invariant (browser.js:38)
at parser (react-apollo.browser.umd.js:199)
at graphql (react-apollo.browser.umd.js:1061)
at Object../src/map/StudentsMap.js (StudentsMap.js:96)
at __webpack_require__ (bootstrap b06dc52180087582baaa:19)
at Object../src/App.js (App.css?9a66:26)
at __webpack_require__ (bootstrap b06dc52180087582baaa:19)
at Object../src/index.js (index.css?f255:26)
at __webpack_require__ (bootstrap b06dc52180087582baaa:19)
at Object.0 (registerServiceWorker.js:117)
ただし、コンポーネントの同じファイル (インポートしない) でクエリを次のように定義すると、次のようになります。
const getStudents= gql`
query getStudents($schoolID: Int){
allStudents(schoolId: $schoolID){
pickUpLat
pickUpLng
}
}`
その後、正常に動作しますが、クエリをインポートしようとするとエラーが発生する理由はありますか?
ここに私の設定があります:(この参照webpack.config.js
に基づいて)
var webpack = require('webpack');
module: {
rules: [
{
test: /\.(graphql|gql)$/,
exclude: /node_modules/,
loader: 'graphql-tag/loader',
},
],
}
Webpack でのクエリの読み込みに失敗しているようです。またはそれは何でしょうか?