mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
14 lines
294 B
JavaScript
14 lines
294 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
{
|
|
resolve: "gatsby-source-graphql",
|
|
options: {
|
|
typeName: "HASURA",
|
|
fieldName: "hasura",
|
|
url: process.env.GATSBY_HASURA_GRAPHQL_URL,
|
|
refetchInterval: 10 // Refresh every 60 seconds for new data
|
|
}
|
|
}
|
|
]
|
|
};
|