Go to file
2020-03-05 21:42:34 +08:00
.github/workflows add some files 2020-03-01 21:56:14 +08:00
async-graphql-derive v0.8.1 2020-03-05 21:34:56 +08:00
examples fix some bug 2020-03-05 21:34:31 +08:00
src Update directive.rs 2020-03-05 21:42:34 +08:00
.gitignore init commit 2020-03-01 18:54:34 +08:00
Cargo.toml Update Cargo.toml 2020-03-05 21:38:01 +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 v0.8.0 2020-03-05 17:06:14 +08:00

⚠️ Some features are not yet implemented. Please do not use in a production environment.

The GraphQL server library implemented by rust

Documentation

Features

  • Fully support async/await.
  • Type safety.
  • Rustfmt friendly (Procedural Macro).
  • Custom scalar.
  • Minimal overhead.
  • Easy integration (hyper, actix_web, tide ...).

Goals

  • Types
    • Scalar
      • Integer
      • Float
      • String
      • Bool
      • ID
      • DateTime
      • UUID
    • Containers
      • List
      • Non-Null
    • Object
      • Generic Types
      • Lifetime cycle
    • Enum
    • InputObject
      • Field default value
      • Deprecated flag
    • Interface
    • Union
  • Query
    • Fields
    • Arguments
      • Default value
      • Deprecated flag
    • Alias
    • Fragments
    • Inline fragments
    • Operation name
    • Variables
      • Default value
      • Parse value
    • Directives
      • @include
        • FIELD
        • FRAGMENT_SPREAD
        • INLINE_FRAGMENT
      • @skip
        • FIELD
        • FRAGMENT_SPREAD
        • INLINE_FRAGMENT
    • Schema
  • Validation rules
  • Integration examples
    • Actix-web
    • Hyper
    • Tide

License

Licensed under either of

References