index.js 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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. const cors = require('cors')
  105. var express_graphql = require('express-graphql');
  106. var { buildSchema } = require('graphql');
  107. // GraphQL schema
  108. //
  109. var schema = buildSchema(`
  110. type Query {
  111. post(id: Int!): Post
  112. comments(id: Int!): [Comment]
  113. subComments(id: Int!): [Comment]
  114. posts: [Post]
  115. }
  116. type Mutation {
  117. createPost(title: String!, text: String!): Post
  118. createComment(postID: Int!, text: String!): Post
  119. }
  120. type Post {
  121. id: Int
  122. title: String
  123. text: String
  124. age: String
  125. tagz: [String]
  126. comments: [Comment]
  127. timestamp: Int
  128. }
  129. type Comment {
  130. id: Int
  131. text: String
  132. age: String
  133. }
  134. `);
  135. async function getPost(args){
  136. let id = args.id
  137. //return Post.findById(id).then( post => (post.comments = post.getComments(), post) )
  138. let post = await Post.findById(id)
  139. post.comments = await post.getComments()
  140. post.timestamp = post.createdAt.getTime()/1000
  141. //console.log(post.createdAt, typeof post.createdAt, post.createdAt.getTime())
  142. return post;
  143. }
  144. async function getPosts(args){
  145. let posts = await Post.findAll({})
  146. for (let post of posts){
  147. post.timestamp = post.createdAt.getTime()/1000
  148. }
  149. return posts;
  150. }
  151. function getPostComments(args){
  152. let id = args.id
  153. return Post.findById(id).then( post => post.getComments() )
  154. }
  155. async function getSubComments(args){
  156. let id = args.id
  157. //return Comment.findById(id).then( comment => comment.getComments() )
  158. let comment = await Comment.findById(id)
  159. return comment.getComments()
  160. }
  161. async function createPost({title, text}){
  162. return Post.create({title, text})
  163. }
  164. async function createComment({postID, text}){
  165. let post = await Post.findById(postID)
  166. let comment = await Comment.create({text})
  167. post.addComment(comment)
  168. return comment
  169. }
  170. // Root resolver
  171. var root = {
  172. post: getPost,
  173. posts: getPosts,
  174. comments: getPostComments,
  175. subComments: getSubComments,
  176. createPost,
  177. createComment,
  178. };
  179. // Create an express server and a GraphQL endpoint
  180. var app = express();
  181. app.use(cors())
  182. app.use('/graphql', express_graphql({
  183. schema: schema,
  184. rootValue: root,
  185. graphiql: true
  186. }));
  187. app.listen(4000, () => console.log('Express GraphQL Server Now Running On localhost:4000/graphql'));
  188. //query getPost($postID: Int!){
  189. //post(id:$postID){
  190. //text
  191. //timestamp
  192. //}
  193. //}
  194. //query getComments($postID: Int!){
  195. //comments(id:$postID){
  196. //text
  197. //}
  198. //}
  199. //query getPostWithComments($postID: Int!){
  200. //post(id:$postID){
  201. //text
  202. //comments {
  203. //text
  204. //age
  205. //}
  206. //}
  207. //}
  208. //query getSubComments($commentID: Int!){
  209. //subComments(id:$commentID){
  210. //text
  211. //}
  212. //}
  213. //mutation createPost($title: String!, $text:String!) {
  214. //createPost(title: $title, text: $text) {
  215. //title
  216. //text
  217. //}
  218. //}
  219. //mutation createComment($postID:Int!, $text:String!) {
  220. //createComment(postID: $postID, text: $text) {
  221. //text
  222. //}
  223. //}