From 3701dcf4644faae04637a61b144c19cb7d6dda12 Mon Sep 17 00:00:00 2001 From: Valentin Cocaud Date: Fri, 28 Apr 2023 22:03:25 +0200 Subject: [PATCH] run prettier --- examples/apollo-federation/gateway/index.js | 4 +++- examples/hello-world/index.js | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/apollo-federation/gateway/index.js b/examples/apollo-federation/gateway/index.js index 6ff87c4afc..43e5e014da 100644 --- a/examples/apollo-federation/gateway/index.js +++ b/examples/apollo-federation/gateway/index.js @@ -15,7 +15,9 @@ async function main() { // Start the server and explore http://localhost:4000/graphql const server = createServer(yoga) server.listen(4000, () => { - console.info(`Server is running on http://localhost:4000${yoga.graphqlEndpoint}`) + console.info( + `Server is running on http://localhost:4000${yoga.graphqlEndpoint}`, + ) }) } diff --git a/examples/hello-world/index.js b/examples/hello-world/index.js index b1c79dd5bd..94b10a9703 100644 --- a/examples/hello-world/index.js +++ b/examples/hello-world/index.js @@ -30,5 +30,7 @@ const yoga = createYoga({ const server = createServer(yoga) server.listen(4000, () => { - console.log(`Server is running on http://localhost:4000${yoga.graphqlEndpoint}`) + console.log( + `Server is running on http://localhost:4000${yoga.graphqlEndpoint}`, + ) })