LoginSignup
2
1

More than 1 year has passed since last update.

You must `await server.start()` before calling `server.applyMiddleware()`の解決方法

Last updated at Posted at 2022-02-20

概要

環境

  • macOS Monterey: 12.2.1
  • "apollo-server-express": "^3.6.3",
  • "express": "^4.17.3",
  • "graphql": "^16.3.0",

 試したコード

index.js
const express = require('express');
const { ApolloServer, gql } = require('apollo-server-express');

// Construct a schema, using GraphQL schema language
const typeDefs = gql`
  type Query {
    hello: String
  }
`;

// Provide resolver functions for your schema fields
const resolvers = {
  Query: {
    hello: () => 'Hello world!',
  },
};

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

const app = express();
server.applyMiddleware({ app });

app.listen({ port: 4000 }, () =>
  console.log(`🚀 Server ready at http://localhost:4000${server.graphqlPath}`)
);
  • node index.jsを実行すると以下のエラーが出る
You must `await server.start()` before calling `server.applyMiddleware()`

解決方法

ダウングレード

  • バージョンを2.xにすると大丈夫っぽい

コードの変更

以下のように変更

index.js
const express = require('express');
const { ApolloServer, gql } = require('apollo-server-express');

// Construct a schema, using GraphQL schema language
const typeDefs = gql`
  type Query {
    hello: String
  }
`;

// Provide resolver functions for your schema fields
const resolvers = {
  Query: {
    hello: () => 'Hello world!',
  },
};


async function startServer() {
  apolloServer = new ApolloServer({
    typeDefs,
    resolvers,
  });
  await apolloServer.start();
  apolloServer.applyMiddleware({ app });
}
startServer();

app.listen({ port: 4000 }, () =>
  console.log(`🚀 Server ready at http://localhost:4000`)
);
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1