Skip to content

Instantly share code, notes, and snippets.

View sidharthachatterjee's full-sized avatar

Sidhartha Chatterjee sidharthachatterjee

View GitHub Profile
@sidharthachatterjee
sidharthachatterjee / gatsby-node.js
Created April 1, 2019 10:40
Dynamic GraphQL queries with String interpolation
exports.createPages = ({ graphql, actions }) => {
return graphql(`
{
site {
siteMetadata {
githubOrgs
}
}
}
`).then(result => {