How to update schema on Apollo Server using Webpack's Hot Reload?How do I modify the URL without reloading the page?How can I update NodeJS and NPM to the next versions?How do I update each dependency in package.json to the latest version?How to run nodejs with apollo graphql serverHow to update session from within a graphql resolver using apollo-server-epxressHow do you make Schema Stitching in Apollo Server faster?Apollo GraphQL - Import .graphql schema as typeDefsApollo Server File Upload and Skipper.js conflictHow can we pass datasource and merged graphql schema and resolvers in ApolloServer from apollo-server module?Pass Provider info to Apollo Server

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?

Why is this code 6.5x slower with optimizations enabled?

Can Medicine checks be used, with decent rolls, to completely mitigate the risk of death from ongoing damage?

How does one intimidate enemies without having the capacity for violence?

Why was the small council so happy for Tyrion to become the Master of Coin?

How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

Why is "Reports" in sentence down without "The"

How do I create uniquely male characters?

What would the Romans have called "sorcery"?

How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)

Can I interfere when another PC is about to be attacked?

How is it possible to have an ability score that is less than 3?

Is Social Media Science Fiction?

What Brexit solution does the DUP want?

Why don't electron-positron collisions release infinite energy?

Is there a familial term for apples and pears?

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

What defenses are there against being summoned by the Gate spell?

Draw simple lines in Inkscape

"which" command doesn't work / path of Safari?

declaring a variable twice in IIFE

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

whey we use polarized capacitor?



How to update schema on Apollo Server using Webpack's Hot Reload?


How do I modify the URL without reloading the page?How can I update NodeJS and NPM to the next versions?How do I update each dependency in package.json to the latest version?How to run nodejs with apollo graphql serverHow to update session from within a graphql resolver using apollo-server-epxressHow do you make Schema Stitching in Apollo Server faster?Apollo GraphQL - Import .graphql schema as typeDefsApollo Server File Upload and Skipper.js conflictHow can we pass datasource and merged graphql schema and resolvers in ApolloServer from apollo-server module?Pass Provider info to Apollo Server






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I see this:



[HMR] Updated modules:
[HMR] - ./src/resolvers.js
[HMR] Update applied.


But nothing is updated. I have tried some other solutions I found online regarding webpack's output.publicPath. I have no idea what else to do and soon I am going to production. Restarting the server is not an option for me.



My code:



import express from 'express'
import execute, subscribe from 'graphql';
import ApolloServer from 'apollo-server-express'

import schema from './schema';


import typeDefs from './typeDefs'
import resolvers from './resolvers'

import getUserByToken from './getUserByToken';


const app = express();

const path = '/graphql';

const server = new ApolloServer( typeDefs, resolvers, );

server.applyMiddleware( app );

server.listen(8081, () =>
console.log(`🚀 Server ready at http://localhost:$PORT$server.graphqlPath`)
console.log(`🚀 Subscriptions ready at ws://localhost:$PORT$server.subscriptionsPath`)
)



let currentApp = app

if (module.hot)
module.hot.accept(['./index', './resolvers'], () =>
server.removeListener('request', currentApp);
server.on('request', app);
currentApp = app;
);



Thank you!










share|improve this question




























    1















    I see this:



    [HMR] Updated modules:
    [HMR] - ./src/resolvers.js
    [HMR] Update applied.


    But nothing is updated. I have tried some other solutions I found online regarding webpack's output.publicPath. I have no idea what else to do and soon I am going to production. Restarting the server is not an option for me.



    My code:



    import express from 'express'
    import execute, subscribe from 'graphql';
    import ApolloServer from 'apollo-server-express'

    import schema from './schema';


    import typeDefs from './typeDefs'
    import resolvers from './resolvers'

    import getUserByToken from './getUserByToken';


    const app = express();

    const path = '/graphql';

    const server = new ApolloServer( typeDefs, resolvers, );

    server.applyMiddleware( app );

    server.listen(8081, () =>
    console.log(`🚀 Server ready at http://localhost:$PORT$server.graphqlPath`)
    console.log(`🚀 Subscriptions ready at ws://localhost:$PORT$server.subscriptionsPath`)
    )



    let currentApp = app

    if (module.hot)
    module.hot.accept(['./index', './resolvers'], () =>
    server.removeListener('request', currentApp);
    server.on('request', app);
    currentApp = app;
    );



    Thank you!










    share|improve this question
























      1












      1








      1








      I see this:



      [HMR] Updated modules:
      [HMR] - ./src/resolvers.js
      [HMR] Update applied.


      But nothing is updated. I have tried some other solutions I found online regarding webpack's output.publicPath. I have no idea what else to do and soon I am going to production. Restarting the server is not an option for me.



      My code:



      import express from 'express'
      import execute, subscribe from 'graphql';
      import ApolloServer from 'apollo-server-express'

      import schema from './schema';


      import typeDefs from './typeDefs'
      import resolvers from './resolvers'

      import getUserByToken from './getUserByToken';


      const app = express();

      const path = '/graphql';

      const server = new ApolloServer( typeDefs, resolvers, );

      server.applyMiddleware( app );

      server.listen(8081, () =>
      console.log(`🚀 Server ready at http://localhost:$PORT$server.graphqlPath`)
      console.log(`🚀 Subscriptions ready at ws://localhost:$PORT$server.subscriptionsPath`)
      )



      let currentApp = app

      if (module.hot)
      module.hot.accept(['./index', './resolvers'], () =>
      server.removeListener('request', currentApp);
      server.on('request', app);
      currentApp = app;
      );



      Thank you!










      share|improve this question














      I see this:



      [HMR] Updated modules:
      [HMR] - ./src/resolvers.js
      [HMR] Update applied.


      But nothing is updated. I have tried some other solutions I found online regarding webpack's output.publicPath. I have no idea what else to do and soon I am going to production. Restarting the server is not an option for me.



      My code:



      import express from 'express'
      import execute, subscribe from 'graphql';
      import ApolloServer from 'apollo-server-express'

      import schema from './schema';


      import typeDefs from './typeDefs'
      import resolvers from './resolvers'

      import getUserByToken from './getUserByToken';


      const app = express();

      const path = '/graphql';

      const server = new ApolloServer( typeDefs, resolvers, );

      server.applyMiddleware( app );

      server.listen(8081, () =>
      console.log(`🚀 Server ready at http://localhost:$PORT$server.graphqlPath`)
      console.log(`🚀 Subscriptions ready at ws://localhost:$PORT$server.subscriptionsPath`)
      )



      let currentApp = app

      if (module.hot)
      module.hot.accept(['./index', './resolvers'], () =>
      server.removeListener('request', currentApp);
      server.on('request', app);
      currentApp = app;
      );



      Thank you!







      javascript node.js webpack apollo-server hot-reload






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 22 at 0:56









      SkyPowerSkyPower

      398




      398






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291370%2fhow-to-update-schema-on-apollo-server-using-webpacks-hot-reload%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291370%2fhow-to-update-schema-on-apollo-server-using-webpacks-hot-reload%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript