-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add stableRevision and nightlyRevision to values, and enable auto-syn…
…c for stable release
- Loading branch information
1 parent
0689c7d
commit 7385fb0
Showing
7 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
rust-service | ||
.devcontainer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Rust Service | ||
|
||
## Preface | ||
|
||
This guide will explain how to develop a Rust service to serve data to the Graph. | ||
We will cover: | ||
|
||
- Setting up the HTTP/GraphQL Server in [Serving GraphQL Requests](#serving-graphql-requests) | ||
- Creating GraphQL Objects and providing field resolvers in [Defining Objects](#defining-objects) | ||
- Exporting the GraphQL schema for use in federation in [Schema Generation](#schema-generation) | ||
|
||
## Dependencies | ||
|
||
This guide will utilize the following dependencies: | ||
|
||
- `rocket` as the HTTP server | ||
- `async-graphql` for GraphQL request handling |