Skip to content

Commit dd7943c

Browse files
authored
chore: disable uploads in example code (#198)
1 parent fe2008a commit dd7943c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/gateway.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const gateway = new ApolloGateway({
1212
});
1313

1414
(async () => {
15-
const server = new ApolloServer({ gateway, subscriptions: false });
15+
const server = new ApolloServer({ gateway, subscriptions: false, uploads: false });
1616

1717
server.listen({ port: 5000 }).then(({ url }) => {
1818
console.log(`🚀 Server ready at ${url}`);

0 commit comments

Comments
 (0)