Update README.md

This commit is contained in:
sunli 2020-03-01 22:13:37 +08:00
parent 1be04c68e0
commit fdf3c1d360
1 changed files with 29 additions and 0 deletions

View File

@ -26,6 +26,35 @@
* [Cargo package](https://crates.io/crates/async-graphql)
* Minimum supported Rust version: 1.39 or later
## Goals
- [ ] Types
- [X] Scalar
- [X] Integer
- [X] Float
- [X] String
- [X] Bool
- [X] DateTime
- [X] UUID
- Complex Types
- [X] List
- [X] Non-Null
- [ ] Object
- [X] Enum
- [ ] InputObject
- [ ] Interface
- [ ] Union
- [ ] Query
- [X] Fields
- [X] Arguments
- [ ] Alias
- [ ] Fragments
- [ ] Inline fragments
- [X] Operation name
- [ ] Variables
- [ ] Directives
- [ ] Schema
## References
* [GraphQL](https://graphql.org)