Open ettzzi opened 4 years ago
Looks like following the advice in the warning message I have solved the issue by defining a custom type.
type googleSheetEsercentiRow implements Node {
address: String
children: NodeFilterListInput
id: String
name: String
phone1: String,
phone2: String
internal: InternalFilterInput
neighborhood: String
parent: NodeFilterInput
type: String
}
Is this the best solution?
Worked for me. In my gatsby-node.js
:
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions
const typeDefs = `
type googleSheetWebsiteDataSourceRow implements Node @dontInfer {
zip: String!
businessname: String!
}
`
createTypes(typeDefs)
}
Hello, I am trying to receive data from a list of shops. The column "name" contains the names of all shops. I have a name that is called 128 and I think is breaking the plugin:
I receive the following error: