index.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. var Sequelize = require('sequelize');
  2. var sequelize = new Sequelize('test', '', '',
  3. {
  4. host: 'localhost',
  5. dialect: 'mysql',
  6. pool: {
  7. max: 5,
  8. min: 0,
  9. idle: 10000
  10. },
  11. //logging: false
  12. }
  13. );
  14. var Post = sequelize.define('post', {
  15. title: Sequelize.STRING,
  16. text: Sequelize.TEXT,
  17. },{
  18. getterMethods: {
  19. tagz() {
  20. return this.getTags().then(tagz => tagz.map(tag => tag.title))
  21. },
  22. age() {
  23. return (((new Date).getTime() - this.createdAt.getTime()) / 3600000).toFixed(0) + ' hrs ago';
  24. }
  25. },
  26. })
  27. var Comment = sequelize.define('comment',{
  28. text: Sequelize.TEXT
  29. })
  30. Post.hasMany(Comment)
  31. Comment.belongsTo(Post)
  32. Comment.hasMany(Comment)
  33. Comment.belongsTo(Comment)
  34. var Tag = sequelize.define('tag', {
  35. title: Sequelize.STRING
  36. })
  37. Tag.belongsToMany(Post, {through: 'PostTag'})
  38. Post.belongsToMany(Tag, {through: 'PostTag'})
  39. async function fillDB(){
  40. await sequelize.sync()
  41. var post1 = await Post.create( {
  42. title: 'First Post',
  43. text: 'First Post BLah-blah-blah'
  44. })
  45. var post2 = await Post.create(
  46. {
  47. title: 'Second Post',
  48. text: 'Second Post BLah-blah-blah'
  49. })
  50. var post3 = await Post.create(
  51. {
  52. title: 'Third Post',
  53. text: 'Third Post BLah-blah-blah'
  54. })
  55. var comment1 = await Comment.create({text: 'test comment for first post'})
  56. var comment11 = await Comment.create({text: 'test comment for first comment of first post'})
  57. var comment12 = await Comment.create({text: 'test comment 2 for first comment of first post'})
  58. post1.addComment(comment1)
  59. comment1.addComment(comment11);
  60. comment1.addComment(comment12);
  61. var comment2 = await Comment.create({text: 'test comment for second post'})
  62. var comment21 = await Comment.create({text: 'test comment for first comment of second post'})
  63. var comment22 = await Comment.create({text: 'test comment 2 for first comment of second post'})
  64. comment2.addComment(comment21);
  65. comment21.addComment(comment22);
  66. post2.addComment(comment2)
  67. var tag1 = await Tag.create({title: 'tag1'})
  68. var tag2 = await Tag.create({title: 'tag2'})
  69. var tag3 = await Tag.create({title: 'tag3'})
  70. tag1.addPosts([post1, post3])
  71. post1.addTags([tag2])
  72. post2.addTags([tag2, tag3])
  73. tag3.addPost(post3)
  74. }
  75. //fillDB()
  76. //
  77. //
  78. async function getData(){
  79. var tag1 = await Tag.findOne({
  80. where: {
  81. title: 'tag1'
  82. }
  83. })
  84. //console.log(await tag1.getPosts())
  85. for (let post of await tag1.getPosts()){
  86. console.log('TAG1', post.title)
  87. }
  88. var comment1 = await Comment.findOne({
  89. where: {
  90. id: 1
  91. }
  92. })
  93. for (let comment of await comment1.getComments()){
  94. console.log('comment1 sub comment:', comment.text)
  95. console.log('parent', (await comment.getComment()).text)
  96. }
  97. var post1 =(await comment1.getPost());
  98. console.log(`${post1.text} at ${post1.createdAt}`)
  99. console.log(await post1.tagz)
  100. console.log(post1.age)
  101. }
  102. getData()
  103. var express = require('express');
  104. var express_graphql = require('express-graphql');
  105. var { buildSchema } = require('graphql');
  106. // GraphQL schema
  107. //
  108. var schema = buildSchema(`
  109. type Query {
  110. post(id: Int!): Post
  111. comments(id: Int!): [Comment]
  112. subComments(id: Int!): [Comment]
  113. }
  114. type Post {
  115. id: Int
  116. title: String
  117. text: String
  118. age: String
  119. comments: [Comment]
  120. }
  121. type Comment {
  122. id: Int
  123. text: String
  124. }
  125. `);
  126. async function getPost(args){
  127. let id = args.id
  128. //return Post.findById(id).then( post => (post.comments = post.getComments(), post) )
  129. let post = await Post.findById(id)
  130. post.comments = await post.getComments()
  131. return post;
  132. }
  133. function getPostComments(args){
  134. let id = args.id
  135. return Post.findById(id).then( post => post.getComments() )
  136. }
  137. async function getSubComments(args){
  138. let id = args.id
  139. //return Comment.findById(id).then( comment => comment.getComments() )
  140. let comment = await Comment.findById(id)
  141. return comment.getComments()
  142. }
  143. // Root resolver
  144. var root = {
  145. post: getPost,
  146. comments: getPostComments,
  147. subComments: getSubComments,
  148. };
  149. // Create an express server and a GraphQL endpoint
  150. var app = express();
  151. app.use('/graphql', express_graphql({
  152. schema: schema,
  153. rootValue: root,
  154. graphiql: true
  155. }));
  156. app.listen(4000, () => console.log('Express GraphQL Server Now Running On localhost:4000/graphql'));
  157. //query getPost($postID: Int!){
  158. //post(id:$postID){
  159. //text
  160. //}
  161. //}
  162. //query getComments($postID: Int!){
  163. //comments(id:$postID){
  164. //text
  165. //}
  166. //}
  167. //query getPostWithComments($postID: Int!){
  168. //post(id:$postID){
  169. //text
  170. //comments {
  171. //text
  172. //}
  173. //}
  174. //}
  175. //query getSubComments($commentID: Int!){
  176. //subComments(id:$commentID){
  177. //text
  178. //}
  179. //}