Skip to content

Commit

Permalink
FIXME tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
glasser committed Mar 18, 2021
1 parent c725c96 commit 9922900
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/source/api/apollo-server.md
Expand Up @@ -682,6 +682,9 @@ The full URL of the server's subscriptions endpoint.
</tbody>
</table>

#### `start`

`ApolloServer.start()` is an async method that tells your Apollo Server to do everything necessary to become ready to start serving traffic. FIXME finish this
#### `applyMiddleware`

Connects Apollo Server to the HTTP framework of a Node.js middleware library, such as hapi or express.
Expand All @@ -701,7 +704,7 @@ const server = new ApolloServer({
typeDefs,
resolvers,
});
// FIXME add start here
// FIXME add start here, and generally fix top level awaits

const app = express();

Expand Down

0 comments on commit 9922900

Please sign in to comment.