Metadata-Version: 2.1
Name: easy-graphql-server
Version: 0.8.1a0
Summary: Easy to use abstraction layer for GraphQL, with support for Django ORM.
Home-page: https://github.com/mathieurodic/easy-graphql-server
Author: Mathieu Rodic
Author-email: graphql@rodic.fr
License: MIT license
Project-URL: Bug Tracker, https://github.com/mathieurodic/easy-graphql-server/-/issues
Keywords: graphql django
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6,<4
Description-Content-Type: text/markdown
Provides-Extra: tests
License-File: LICENCE

# EGS: Easy GraphQL Server

## Installation

easy_graphql_server can be installed from PyPI using the built-in pip command:

```bash
pip install git+https://github.com/mathieurodic/easy-graphql-server
```

## Goals

easy_graphql_server's intention is to provide an easy way to expose a database in GraphQL,
using ORM models (so far only Django is supported, but SQLAlchemy will soon come).

## Credits and history

The easy_graphql_server library was originally a subproject within the Bridger development
team, to provide an easy way to expose database models with GraphQL using
[Graphene](https://github.com/graphql-python/graphene).

The project was then rewritten with [graphq-core](https://github.com/graphql-python/graphql-core/)
and Graphene was dropped.

## License

easy_graphql_server is under MIT license.


