index.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. var schema = buildSchema(`
  108. type Query {
  109. post(id: Int!): Post
  110. }
  111. type Post {
  112. id: Int
  113. title: String
  114. text: String
  115. age: String
  116. }
  117. `);
  118. function getPost(args){
  119. let id = args.id
  120. return Post.findById(id)
  121. }
  122. // Root resolver
  123. var root = {
  124. post: getPost
  125. };
  126. // Create an express server and a GraphQL endpoint
  127. var app = express();
  128. app.use('/graphql', express_graphql({
  129. schema: schema,
  130. rootValue: root,
  131. graphiql: true
  132. }));
  133. app.listen(4000, () => console.log('Express GraphQL Server Now Running On localhost:4000/graphql'));
  134. //sequelize.sync().then(function(){
  135. //return Post.create(
  136. //{
  137. //title: 'First Post',
  138. //text: 'First Post BLah-blah-blah'
  139. //})
  140. //}).then(function(){
  141. //return Post.create(
  142. //{
  143. //title: 'Second Post',
  144. //text: 'Second Post BLah-blah-blah'
  145. //})
  146. //}).then(function(){
  147. //return Post.create(
  148. //{
  149. //title: 'Third Post',
  150. //text: 'Third Post BLah-blah-blah'
  151. //})
  152. //}).t
  153. //.then(function() {
  154. //return User.create({
  155. //username: 'janedoe',
  156. //birthday: new Date(1980, 6, 20)
  157. //});
  158. //}).then(function(jane) {
  159. //console.log(jane.get({
  160. //plain: true
  161. //}));
  162. //});