KDP(電子出版)のメモ 急急如律令

Amazon Kindleダイレクト・パブリッシングでの電子出版や電子書籍の作成販売について、文章やイラストの作成や編集方法について書いています。

GatsbyJSで書いていないクエリのエラーが出る

Cannot query field "ReleaseDate" on type "Json".

クエリに書いてないのにjsonにないと出てくる。謎だけど

www.gatsbyjs.com

exports.createSchemaCustomization = ({ actions }) => {
  const { createTypes } = actions
  const typeDefs = `
    type Json implements Node {
      ReleaseDate: String,
      ImageURL_m: String,
      ImageURL_s: String,
    }
  `
  createTypes(typeDefs)
}