rsnext/examples/with-relay-modern-server-express/server/db.js
2019-09-10 09:01:59 +02:00

35 lines
559 B
JavaScript

module.exports = {
id: 'viewer',
blogPosts: [
{
id: 'p1',
title: 'Title 1',
content: 'Lorem Ipsum 1'
},
{
id: 'p2',
title: 'Title 2',
content: 'Lorem Ipsum 2'
},
{
id: 'p3',
title: 'Title 3',
content: 'Lorem Ipsum 3'
},
{
id: 'p4',
title: 'Title 4',
content: 'Lorem Ipsum 4'
},
{
id: 'p5',
title: 'Title 5',
content: 'Lorem Ipsum 5'
},
{
id: 'p6',
title: 'Title 6',
content: 'Lorem Ipsum 6'
}
]
}