Apollo 服务器操场无法在 heroku 上工作(在本地工作)

Nih*_*ena 3 heroku node.js ecmascript-6 apollo-server

我正在尝试在 heroku 上部署 run node js 应用程序,它已成功部署,但操场似乎不起作用。

我通过设置解决了这个解决方案introspection: truehttps : //github.com/apollographql/apollo-server/issues/1718但这似乎也不起作用。

Heroku 日志

Heroku 日志

我的代码:

包.json

{
  "name": "travelindiaserver",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "clean": "rm -rf build && mkdir build",
    "build-babel": "babel -d ./build ./src -s",
    "build": "npm run clean && npm run build-babel",
    "start": "npm run build && node ./build/index.js"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "apollo-server-express": "^2.4.8",
    "babel-preset-env": "^1.7.0",
    "express": "^4.16.4",
    "graphql": "^14.2.1"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0"
  }
}
Run Code Online (Sandbox Code Playgroud)

索引.js

import express from "express";
import { ApolloServer } from "apollo-server-express";

import typeDefs from "./schema";
import resolvers from "./resolvers";
import models from "./models";

const app = express();

const server = new ApolloServer({
  typeDefs,
  resolvers,
  context: { models },
  introspection: true
});

server.applyMiddleware({ app });

const PORT = process.env.PORT || 5000;

app.listen(PORT, () =>
  console.log(
    ` Server ready at http://localhost:${PORT}${server.graphqlPath}`
  )
);
Run Code Online (Sandbox Code Playgroud)

模型/index.js

const cities = [{ name: "City 1" }, { name: "City 2" }];

export default {
  cities
};
Run Code Online (Sandbox Code Playgroud)

解析器/cityResolvers.js

export default {
  Query: {
    cities: (parent, args, { models }) => {
      return models.cities;
    }
  }
};
Run Code Online (Sandbox Code Playgroud)

解析器/index.js

import cityResolvers from "./cityResolvers";

export default [cityResolvers];
Run Code Online (Sandbox Code Playgroud)

架构/city.js

import { gql } from "apollo-server-express";

export default gql`
  extend type Query {
    cities: [City]
  }

  type City {
    name: String
  }
`;
Run Code Online (Sandbox Code Playgroud)

架构/index.js

import { gql } from "apollo-server-express";

import citySchema from "./city";

const linkSchema = gql`
  type Query {
    _: Boolean
  }

  type Mutation {
    _: Boolean
  }

  type Subscription {
    _: Boolean
  }
`;

export default [linkSchema, citySchema];
Run Code Online (Sandbox Code Playgroud)

小智 8

默认情况下,Apollo 服务器在使用NODE_ENV=production. 由于 Heroku 在您使用 Playground 时默认设置它node buildpack被禁用。

要规避该问题,您需要传递给 apollo-server 2 选项:

const server = new ApolloServer({
  introspection: true,
  playground: true
});
Run Code Online (Sandbox Code Playgroud)