Platformics is a GraphQL API framework that relies on code generation to implement a full featured GraphQL API on top of a PostgreSQL database, with support for authorization policy enforcement and file persistence via S3. It's built on top of the best available Python tools and frameworks!
The libraries and tools that make Platformics work:
- LinkML - Schema modeling language
- FastAPI - Async HTTP router
- Strawberry - GraphQL Framework
- Pydantic - Data validation
- Cerbos - Authorization
- SQLAlchemy - Database Access / ORM
- factory_boy - Test fixtures
- Alembic - Database migrations
- Express your schema in a straightforward YAML format
- GraphQL Dataloader pattern (no n+1 queries!)
- Authorization policy enforcement
- Flexible Filtering
- Data aggregation
- Top-level pagination
- Relationship traversal
- DB migrations
- Generated Test fixtures
- pytest wiring
- VSCode debugger integration
- Authorized S3 file up/downloads
- Add custom REST endpoints to generated API
- Add custom GQL queries/mutations to generated API
- Plugin hooks to add business logic to generated GQL resolvers
- Support arbitrary class inheritance hierarchies
- Package and publish to PyPI
- Copy the test_app boilerplate code to your own repository.
- Edit
schema/schema.yml
to reflect your application's data model. - Run
make build
and thenmake init
to build and run your own GraphQL API service. - Browse to http://localhost:9009/graphql to interact with your api!
- Run
make token
to generate an authorization token that you can use to interact with the API. Themake
target copies the necessary headers to the system clipboard. Paste the token into theheaders
section at the bottom of the GraphQL explorer API
Platformics can be used in downstream applications by
- using the platformics image as the base Docker image. To select a version of platformics, add the appropriate version tags to the docker image
- installing as a dependency,
pip install platformics
.
The version in pyproject.toml
is managed using poetry-dynamic-versioning which determines version based on git tags.
- Make changes to
schema/schema.yml
- Run
make codegen
to re-run code gen and restart the API service - If your changes require DB schema changes, run
make alembic-autogenerate
andmake alembic-upgrade-head
to generate DB migrations and run them.
This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to [email protected].
Please disclose security issues responsibly by contacting [email protected].