async-graphql/README.md

142 lines
3.6 KiB
Markdown
Raw Normal View History

2020-03-01 13:56:14 +00:00
# The GraphQL server library implemented by rust
<div align="center">
<!-- CI -->
<img src="https://github.com/sunli829/potatonet/workflows/CI/badge.svg" />
<!-- Crates version -->
<a href="https://crates.io/crates/async-graphql">
<img src="https://img.shields.io/crates/v/async-graphql.svg?style=flat-square"
alt="Crates.io version" />
</a>
<!-- Downloads -->
<a href="https://crates.io/crates/async-graphql">
<img src="https://img.shields.io/crates/d/async-graphql.svg?style=flat-square"
alt="Download" />
</a>
<!-- docs.rs docs -->
<a href="https://docs.rs/async-graphql">
<img src="https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square"
alt="docs.rs docs" />
</a>
</div>
2020-03-12 09:21:49 +00:00
`async-graphql` is a GraphQL server library that fully supports async/await and is easy to use.
It supports all of the GraphQL specifications and is easy to integrate into existing web servers.
2020-03-01 13:56:14 +00:00
## Documentation
* [GitHub repository](https://github.com/sunli829/async-graphql)
* [Cargo package](https://crates.io/crates/async-graphql)
2020-03-10 07:39:50 +00:00
* Minimum supported Rust version: 1.40 or later
2020-03-01 13:56:14 +00:00
2020-03-09 12:44:31 +00:00
## Example
```shell script
cargo run --example actix-web
```
2020-03-09 12:45:11 +00:00
Open `http://localhost:8000` in browser
2020-03-09 12:44:31 +00:00
2020-03-02 00:24:49 +00:00
## Features
2020-03-17 11:11:14 +00:00
* Fully support async/await
* Type safety
* Rustfmt friendly (Procedural Macro)
* Custom scalar
* Minimal overhead
* Easy integration (hyper, actix_web, tide ...)
* Upload files (Multipart request)
* Subscription (WebSocket transport)
2020-03-02 00:24:49 +00:00
2020-03-01 14:13:37 +00:00
## Goals
2020-03-09 04:18:21 +00:00
- [X] Types
2020-03-01 14:13:37 +00:00
- [X] Scalar
- [X] Integer
- [X] Float
- [X] String
- [X] Bool
2020-03-01 16:59:04 +00:00
- [X] ID
2020-03-01 14:13:37 +00:00
- [X] DateTime
- [X] UUID
2020-03-03 11:17:48 +00:00
- [X] Containers
2020-03-01 14:13:37 +00:00
- [X] List
- [X] Non-Null
2020-03-09 10:05:52 +00:00
- [X] Object
2020-03-04 02:38:07 +00:00
- [X] Lifetime cycle
2020-03-01 14:13:37 +00:00
- [X] Enum
2020-03-01 17:09:21 +00:00
- [X] InputObject
2020-03-04 02:38:07 +00:00
- [X] Field default value
2020-03-03 03:48:00 +00:00
- [X] Deprecated flag
2020-03-07 02:43:09 +00:00
- [X] Interface
2020-03-08 01:21:29 +00:00
- [X] Union
2020-03-05 09:06:14 +00:00
- [X] Query
2020-03-01 14:13:37 +00:00
- [X] Fields
- [X] Arguments
2020-03-04 02:38:07 +00:00
- [X] Default value
2020-03-03 03:48:00 +00:00
- [X] Deprecated flag
2020-03-01 16:52:38 +00:00
- [X] Alias
2020-03-05 09:06:14 +00:00
- [X] Fragments
- [X] Inline fragments
2020-03-01 14:13:37 +00:00
- [X] Operation name
2020-03-01 16:52:05 +00:00
- [X] Variables
2020-03-04 02:38:07 +00:00
- [X] Default value
2020-03-03 11:15:18 +00:00
- [X] Parse value
2020-03-05 09:06:14 +00:00
- [X] Directives
- [X] @include
- [X] FIELD
2020-03-05 09:06:14 +00:00
- [X] FRAGMENT_SPREAD
- [X] INLINE_FRAGMENT
- [X] @skip
- [X] FIELD
2020-03-05 09:06:14 +00:00
- [X] FRAGMENT_SPREAD
- [X] INLINE_FRAGMENT
2020-03-03 11:17:48 +00:00
- [X] Schema
2020-03-14 03:46:20 +00:00
- [X] Multipart Request (https://github.com/jaydenseric/graphql-multipart-request-spec)
- [X] Actix-web
2020-03-17 09:26:59 +00:00
- [X] Subscription
- [X] Filter
- [X] WebSocket transport
2020-03-12 09:11:02 +00:00
- [X] Validation rules
2020-03-08 12:58:22 +00:00
- [X] ArgumentsOfCorrectType
- [X] DefaultValuesOfCorrectType
2020-03-09 04:08:50 +00:00
- [X] FieldsOnCorrectType
- [X] FragmentsOnCompositeTypes
- [X] KnownArgumentNames
2020-03-11 02:10:56 +00:00
- [X] KnownDirectives
2020-03-09 04:08:50 +00:00
- [X] KnownFragmentNames
2020-03-09 10:05:52 +00:00
- [X] KnownTypeNames
- [X] LoneAnonymousOperation
2020-03-09 04:08:50 +00:00
- [X] NoFragmentCycles
2020-03-09 10:05:52 +00:00
- [X] NoUndefinedVariables
- [X] NoUnusedFragments
2020-03-09 12:39:46 +00:00
- [X] NoUnusedVariables
2020-03-12 09:11:02 +00:00
- [X] OverlappingFieldsCanBeMerged
2020-03-10 10:07:47 +00:00
- [X] PossibleFragmentSpreads
2020-03-10 12:35:25 +00:00
- [X] ProvidedNonNullArguments
2020-03-10 06:14:09 +00:00
- [X] ScalarLeafs
2020-03-09 12:39:46 +00:00
- [X] UniqueArgumentNames
- [X] UniqueFragmentNames
2020-03-10 06:14:09 +00:00
- [X] UniqueOperationNames
- [X] UniqueVariableNames
- [X] VariablesAreInputTypes
- [X] VariableInAllowedPosition
2020-03-05 09:06:14 +00:00
- [ ] Integration examples
2020-03-05 06:37:16 +00:00
- [X] Actix-web
2020-03-03 11:25:20 +00:00
- [ ] Hyper
- [X] Tide
2020-03-03 03:48:00 +00:00
## License
Licensed under either of
* Apache License, Version 2.0,
(./LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license (./LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
2020-03-01 14:13:37 +00:00
2020-03-01 13:56:14 +00:00
## References
* [GraphQL](https://graphql.org)