GatsbyでPlaygroundを使用する時(GraphQL)
参考
Gatsbyノート2(Markdown/GraphQL Playground)
最短・最速で学ぶ React製 静的サイトジェネレータ GatsbyJS + CMS Contentfulブログ実装編
npm run developを使用する
gatsby develop
ではなくnpm run develop
を使用してhttp://localhost:8000/___graphqlにアクセスする
どゆこと? package.jsonを編集する
"scripts": {
"build": "gatsby build",
"develop": "GATSBY_GRAPHQL_IDE=playground gatsby develop", // この部分をGatsby developでは呼んでくれていないため?
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
package.jsonのscriptsのdevelopにGATSBY_GRAPHQL_IDE=playgroundを追加編集後、
Gatsby develop
ではここが呼ばれずにデフォルトのツールが起動。
npm run develop
でpackage.jsonが反映される、という挙動でした。
Author And Source
この問題について(GatsbyでPlaygroundを使用する時(GraphQL)), 我々は、より多くの情報をここで見つけました https://qiita.com/kunshi/items/cab83952a1066b4fca0d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .