mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
a996fba09c
* Added a new example with relay modern and a graphql server with express. * removed .graphqlconfig file from with-relay-modern-server-express example
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
const gqr = require('graphql-relay')
|
|
const db = require('./db')
|
|
const viewer = variables => ({
|
|
allBlogPosts: gqr.connectionFromArray(db.blogPosts, variables)
|
|
})
|
|
|
|
module.exports = { viewer }
|