Go to file
2020-03-02 00:52:38 +08:00
.github/workflows add some files 2020-03-01 21:56:14 +08:00
async-graphql-derive variables supported 2020-03-02 00:52:05 +08:00
examples add InputObject 2020-03-01 21:35:39 +08:00
src variables supported 2020-03-02 00:52:05 +08:00
.gitignore init commit 2020-03-01 18:54:34 +08:00
Cargo.toml add some files 2020-03-01 21:56:14 +08:00
LICENSE-APACHE add some files 2020-03-01 21:56:14 +08:00
LICENSE-MIT add some files 2020-03-01 21:56:14 +08:00
README.md Update README.md 2020-03-02 00:52:38 +08:00

The GraphQL server library implemented by rust

Documentation

Goals

  • Types
    • Scalar
      • Integer
      • Float
      • String
      • Bool
      • DateTime
      • UUID
    • Complex Types
      • List
      • Non-Null
    • Object
    • Enum
    • InputObject
    • Interface
    • Union
  • Query
    • Fields
    • Arguments
    • Alias
    • Fragments
    • Inline fragments
    • Operation name
    • Variables
    • Directives
    • Schema

References