You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running gatsby build, either locally or in Netlify CI, the following warning is printed:
warn Plugin `gatsby-source-filesystem` tried to define built-in Gatsby GraphQL type `File`
warn Multiple node fields resolve to the same GraphQL field `Airtable.data.Organization` - [`Organization___NODE`, `Organization`]. Gatsby will use `Organization___NODE`.
warn There are conflicting field types in your data.
If you have explicitly defined a type for those fields, you can safely ignore this warning message.
Otherwise, Gatsby will omit those fields from the GraphQL schema.
If you know all field types in advance, the best strategy is to explicitly define them with the `createTypes` action, and skip inference with the `@dontInfer` directive.
See https://www.gatsbyjs.org/docs/actions/#createTypes
Airtable.data.Submissions:
- type: array
value: [ ..., 'recCJg2l0dwb7AO3k', ... ]
- type: string
value: '2NDNATURE Software, 2NDNATURE'
The text was updated successfully, but these errors were encountered:
ehmicky
changed the title
[build warning] Warning message with gatsby-source-filesystem
[build warning] Warning message with gatsby-source-filesystemApr 1, 2020
We more recently added the separateNodeType and separateMapType which gives you tools to resolve the conflicting types. Effectively the node types are the same but the underlying data is not of the same type. Using these options, you can create new types.
When running
gatsby build
, either locally or in Netlify CI, the following warning is printed:This might be related to #81.
The text was updated successfully, but these errors were encountered: