Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angel-dart-archive/graphql
moved to angel-dart/angel/packages/graphql
https://github.com/angel-dart-archive/graphql
dart graphql graphql-parser
Last synced: 10 days ago
JSON representation
moved to angel-dart/angel/packages/graphql
- Host: GitHub
- URL: https://github.com/angel-dart-archive/graphql
- Owner: angel-dart-archive
- License: mit
- Archived: true
- Created: 2017-01-20T20:42:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-04T15:31:21.000Z (almost 5 years ago)
- Last Synced: 2024-08-06T01:18:53.859Z (3 months ago)
- Topics: dart, graphql, graphql-parser
- Language: Dart
- Homepage: https://github.com/angel-dart/angel/tree/master/packages/graphql
- Size: 7.46 MB
- Stars: 114
- Watchers: 9
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-graphql - Angel GraphQL - GraphQL server implementation with bindings (Libraries / Dart Libraries)
README
![Logo](https://github.com/angel-dart/graphql/raw/master/img/angel_logo.png)
A complete implementation of the official
[GraphQL specification](https://graphql.github.io/graphql-spec/June2018/),
in the Dart programming language.The goal of this project is to provide to server-side
users of Dart an alternative to REST API's.Included is also
`package:angel_graphql`, which, when combined with the
[Angel](https://github.com/angel-dart) framework, allows
server-side Dart users to build backends with GraphQL and
virtually any database imaginable.## Tutorial Demo (click to watch)
[![Youtube thumbnail](video.png)](https://youtu.be/5x6S4kDODa8)## Projects
This mono repo is split into several sub-projects,
each with its own detailed documentation and examples:
* `angel_graphql` - Support for handling GraphQL via HTTP and
WebSockets in the [Angel](https://angel-dart.dev) framework. Also serves as the `package:graphql_server` reference implementation.
* `data_loader` - A Dart port of [`graphql/data_loader`](https://github.com/graphql/dataloader).
* `example_star_wars`: An example GraphQL API built using
`package:angel_graphql`.
* `graphql_generator`: Generates `package:graphql_schema` object types from concrete Dart classes.
* `graphql_parser`: A recursive descent parser for the GraphQL language.
* `graphql_schema`: An implementation of GraphQL's type system. This, combined with `package:graphql_parser`,
powers `package:graphql_server`.
* `graphql_server`: Base functionality for implementing GraphQL servers in Dart. Has no dependency on any
framework.