index.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. 'use strict';
  2. const express = require('express');
  3. const graphqlHTTP = require('express-graphql');
  4. const {
  5. GraphQLBoolean,
  6. GraphQLID,
  7. GraphQLInputObjectType,
  8. GraphQLInt,
  9. GraphQLList,
  10. GraphQLNonNull,
  11. GraphQLObjectType,
  12. GraphQLSchema,
  13. GraphQLString,
  14. } = require('graphql');
  15. const {
  16. createVideo,
  17. getVideoById,
  18. getVideos
  19. } = require('./src/data/index');
  20. const PORT = process.env.PORT || 3000;
  21. const server = express();
  22. const videoInputType = new GraphQLInputObjectType({
  23. name: "VideoInput",
  24. fields: {
  25. title: {
  26. type: new GraphQLNonNull(GraphQLString),
  27. description: 'The title of the video'
  28. },
  29. duration: {
  30. type: new GraphQLNonNull(GraphQLInt),
  31. description: 'The duration of the video, in seconds'
  32. },
  33. released: {
  34. type: new GraphQLNonNull(GraphQLBoolean),
  35. description: "Whether or not the video is released"
  36. }
  37. }
  38. });
  39. const videoType = new GraphQLObjectType({
  40. name: 'Video',
  41. description: 'A video on egghead.io',
  42. fields: {
  43. id: {
  44. type: GraphQLID,
  45. description: 'The ID of the video'
  46. },
  47. title: {
  48. type: GraphQLString,
  49. description: 'The title of the video'
  50. },
  51. duration: {
  52. type: GraphQLInt,
  53. description: 'The duration of the video, in seconds',
  54. },
  55. watched: {
  56. type: GraphQLBoolean,
  57. description: 'Whether or not the viewer has watched the video'
  58. }
  59. }
  60. });
  61. const queryType = new GraphQLObjectType({
  62. name: 'QueryType',
  63. description: 'The root query type',
  64. fields: {
  65. video: {
  66. type: videoType,
  67. args: {
  68. id: {
  69. type: new GraphQLNonNull(GraphQLID),
  70. description: 'The ID of the video'
  71. }
  72. },
  73. resolve: (_, args) => {
  74. return getVideoById(args.id);
  75. }
  76. },
  77. videos: {
  78. type: new GraphQLList(videoType),
  79. // General form:
  80. // resolve: () => getVideos()
  81. // Shortcut:
  82. resolve: getVideos
  83. }
  84. }
  85. });
  86. /* Example mutation use:
  87. mutation M {
  88. createVideo(video: {
  89. title: "A new hope",
  90. duration: 7260,
  91. released: true
  92. }) {
  93. id,
  94. title
  95. }
  96. }
  97. */
  98. const mutationType = new GraphQLObjectType({
  99. name: 'Mutation',
  100. description: "The root Mutation type",
  101. fields: {
  102. createVideo: {
  103. type: videoType,
  104. args: {
  105. video: {
  106. type: new GraphQLNonNull(videoInputType)
  107. }
  108. },
  109. resolve: (_, args) => {
  110. return createVideo(args.video);
  111. }
  112. }
  113. }
  114. });
  115. const schema = new GraphQLSchema({
  116. mutation: mutationType,
  117. query: queryType
  118. // Also available:
  119. // subscription: ...
  120. });
  121. server.use('/graphql', graphqlHTTP({
  122. schema,
  123. graphiql: true
  124. }));
  125. server.listen(PORT, () => {
  126. console.log(`Listening on http://localhost:${PORT}`);
  127. });