const path = require('path') exports.createPages = ({ graphql, boundActionCreators }) => { const { createPage } = boundActionCreators return new Promise((resolve, reject) => { graphql( ` { allWordpressPage { edges { node { id slug title } } } } ` ) }) }