webstorm などで 以下のようなエラーが出ることがあります
apollo client the parent selection or operation does not resolve
対策 graphql.config.yml をプロジェクトトップに作成する
graphql.config.yml
{
"name": "Gatsby Schema",
"schemaPath": "gatsby.graphql",
"extensions": {
"endpoints": {
"Gatsby GraphQL Endpoint": {
"url": "http://localhost:4000/graphql/",
"headers": {
"user-agent": "JS GraphQL"
},
"introspect": false
}
}
}
}