Skip to content

Commit

Permalink
Update README.md (#112)
Browse files Browse the repository at this point in the history
* Update README.md

* chore: add one more badge
  • Loading branch information
alessbell committed Oct 16, 2023
1 parent ea670db commit d605db7
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions README.md
@@ -1,4 +1,13 @@
# Apollo GraphQL for VS Code
<div align="center">

<p>
<a href="https://www.apollographql.com/"><img src="https://raw.githubusercontent.com/apollographql/apollo-client-devtools/main/assets/apollo-wordmark.svg" height="100" alt=""></a>
</p>
<h1>Apollo GraphQL for VS Code</h1>

[![Visual Studio Marketplace Version (including pre-releases)](https://img.shields.io/visual-studio-marketplace/v/apollographql.vscode-apollo)](https://marketplace.visualstudio.com/items?itemName=apollographql.vscode-apollo) [![Visual Studio Marketplace Installs](https://img.shields.io/visual-studio-marketplace/i/apollographql.vscode-apollo)](https://marketplace.visualstudio.com/items?itemName=apollographql.vscode-apollo) [![Build Status](https://circleci.com/gh/apollographql/vscode-graphql.svg?style=svg)](https://circleci.com/gh/apollographql/vscode-graphql) [![Join the community](https://img.shields.io/discourse/status?label=Join%20the%20community&server=https%3A%2F%2Fcommunity.apollographql.com)](https://community.apollographql.com) [![Join our Discord server](https://img.shields.io/discord/1022972389463687228.svg?color=7389D8&labelColor=6A7EC2&logo=discord&logoColor=ffffff&style=flat-square)](https://discord.gg/graphos)

</div>

GraphQL has the potential to create incredible developer experiences, thanks to its strongly typed schema and query language. The Apollo platform brings these possibilities to life by enhancing your editor with rich metadata from your graph API.

Expand Down Expand Up @@ -29,8 +38,8 @@ In order for the VS Code plugin to know how to find the schema, it needs to be l
```js
module.exports = {
client: {
service: "my-graphql-app"
}
service: "my-graphql-app",
},
};
```

Expand Down Expand Up @@ -62,9 +71,9 @@ module.exports = {
client: {
service: {
name: "my-graphql-app",
url: "http://localhost:4000/graphql"
}
}
url: "http://localhost:4000/graphql",
},
},
};
```

Expand Down

0 comments on commit d605db7

Please sign in to comment.