gatsby-source-sql
gatsby-source-sql copied to clipboard
Plugin for connecting SQL databases to a Gatsby site. Supported SQL databases are MySQL/MariaDB, PostgreSQL, Amazon Redshift, SQLite3, Oracle and MSSQL.
Gatsby v4 appears to no longer use the `gatsby-node.js` file. I'm using this in my `gatsby-config.ts` file: ``` { resolve: 'gatsby-source-sql', options: { typeName: 'Songs', fieldname: 'data', dbEngine: { client:...
since the plugin is not available as npm it is not listed at: https://www.gatsbyjs.org/plugins/?=sql :(
I am unable to get this to work with mssql. I get no errors and my queries don't show up in graphiql.