|
@@ -129,6 +129,7 @@ async function getData(){
|
|
|
getData()
|
|
|
|
|
|
var express = require('express');
|
|
|
+const cors = require('cors')
|
|
|
var express_graphql = require('express-graphql');
|
|
|
var { buildSchema } = require('graphql');
|
|
|
// GraphQL schema
|
|
@@ -138,6 +139,7 @@ var schema = buildSchema(`
|
|
|
post(id: Int!): Post
|
|
|
comments(id: Int!): [Comment]
|
|
|
subComments(id: Int!): [Comment]
|
|
|
+ posts: [Post]
|
|
|
}
|
|
|
type Mutation {
|
|
|
createPost(title: String!, text: String!): Post
|
|
@@ -170,6 +172,15 @@ async function getPost(args){
|
|
|
return post;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+async function getPosts(args){
|
|
|
+ let posts = await Post.findAll({})
|
|
|
+ for (let post of posts){
|
|
|
+ post.timestamp = post.createdAt.getTime()/1000
|
|
|
+ }
|
|
|
+ return posts;
|
|
|
+}
|
|
|
+
|
|
|
function getPostComments(args){
|
|
|
let id = args.id
|
|
|
return Post.findById(id).then( post => post.getComments() )
|
|
@@ -198,6 +209,7 @@ async function createComment({postID, text}){
|
|
|
// Root resolver
|
|
|
var root = {
|
|
|
post: getPost,
|
|
|
+ posts: getPosts,
|
|
|
comments: getPostComments,
|
|
|
subComments: getSubComments,
|
|
|
createPost,
|
|
@@ -208,11 +220,14 @@ var root = {
|
|
|
|
|
|
// Create an express server and a GraphQL endpoint
|
|
|
var app = express();
|
|
|
+app.use(cors())
|
|
|
+
|
|
|
app.use('/graphql', express_graphql({
|
|
|
schema: schema,
|
|
|
rootValue: root,
|
|
|
graphiql: true
|
|
|
}));
|
|
|
+
|
|
|
app.listen(4000, () => console.log('Express GraphQL Server Now Running On localhost:4000/graphql'));
|
|
|
|
|
|
|