Explorar el Código

cors and front ready

Ivan Asmer hace 6 años
padre
commit
dfdf32eb8d
Se han modificado 2 ficheros con 16 adiciones y 0 borrados
  1. 15 0
      index.js
  2. 1 0
      package.json

+ 15 - 0
index.js

@@ -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'));
 
 

+ 1 - 0
package.json

@@ -9,6 +9,7 @@
   "author": "",
   "license": "ISC",
   "dependencies": {
+    "cors": "^2.8.4",
     "express": "^4.16.3",
     "express-graphql": "^0.6.12",
     "graphql": "^0.13.2",