Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/torchbox/wagtail-grapple
A Wagtail app that makes building GraphQL endpoints a breeze!
https://github.com/torchbox/wagtail-grapple
django graphene graphql graphql-endpoint hacktoberfest python wagtail wagtail-cms wagtail-graphql wagtail-grapple wagtail-plugin
Last synced: 1 day ago
JSON representation
A Wagtail app that makes building GraphQL endpoints a breeze!
- Host: GitHub
- URL: https://github.com/torchbox/wagtail-grapple
- Owner: torchbox
- License: other
- Created: 2019-06-22T23:38:21.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-12T11:58:51.000Z (7 months ago)
- Last Synced: 2024-04-14T06:23:29.528Z (7 months ago)
- Topics: django, graphene, graphql, graphql-endpoint, hacktoberfest, python, wagtail, wagtail-cms, wagtail-graphql, wagtail-grapple, wagtail-plugin
- Language: Python
- Homepage: https://wagtail-grapple.readthedocs.io/en/latest/
- Size: 1.28 MB
- Stars: 147
- Watchers: 15
- Forks: 57
- Open Issues: 60
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-wagtail - Wagtail Grapple - A Wagtail app that makes building GraphQL endpoints a breeze. (Apps / Misc)
README
# Wagtail Grapple
[![Build status](https://github.com/torchbox/wagtail-grapple/actions/workflows/ci.yml/badge.svg)](https://github.com/torchbox/wagtail-grapple/actions)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![PyPi](https://img.shields.io/pypi/v/wagtail-grapple.svg)](https://pypi.org/project/wagtail-grapple/)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/torchbox/wagtail-grapple/main.svg)](https://results.pre-commit.ci/latest/github/torchbox/wagtail-grapple/main)A library to build GraphQL endpoints easily so you can grapple your Wagtail data from anywhere!
[Explore the docs »](https://wagtail-grapple.readthedocs.io/en/latest/) ·
[Report Bug](https://github.com/torchbox/wagtail-grapple/issues) ·
[Request Feature](https://github.com/torchbox/wagtail-grapple/issues)## About The Project
There is a range of GraphQL packages for Python and specifically Django.
However, getting these packages to work out of the box with an existing infrastructure
without errors isn't as easy to come by.The purpose of Grapple is to be able to build GraphQL endpoints on a model by model
basis as quickly as possible. The setup and configuration have been designed
to be as simple but also provide the best features;
No complex serializers need to be written - just add a `graphql_fields` list
to your model and away you go (although if you want to go deeper you can!).### Features
- Easily create GraphQL types by adding a small annotation in your models.
- Supports traditional Wagtail models:
- Pages (including StreamField & Orderables)
- Snippets
- Images
- Documents
- Media (via [wagtailmedia](https://pypi.org/project/wagtailmedia/))
- Settings
- Redirects
- Search (on all models)
- Custom Image & Document model support
- Pagination support
- Middleware support### Built With
This library is an abstraction upon and relies heavily on Graphene & Graphene Django.
- [Graphene](https://github.com/graphql-python/graphene)
- [Graphene Django](https://github.com/graphql-python/graphene)## Getting Started
Getting Grapple installed is designed to be as simple as possible!
### Prerequisites
```
Python >= 3.8
Wagtail >= 5.2
Django >= 4.2
```### Installation
Install using pip
```bash
python -m pip install wagtail_grapple
```Add the following to the `INSTALLED_APPS` list in your Wagtail settings file:
```python
INSTALLED_APPS = [
# ...
"grapple",
"graphene_django",
# ...
]
```Add the following to the bottom of the same settings file, where each key is the app you want to this library to scan and the value is the prefix you want to give to GraphQL types (you can usually leave this blank):
```python
# Grapple config:
GRAPHENE = {"SCHEMA": "grapple.schema.schema"}
GRAPPLE = {
"APPS": ["home"],
}
```Add the GraphQL URLs to your `urls.py`:
```python
from django.urls import include, path
from grapple import urls as grapple_urls# ...
urlpatterns = [
# ...
path("api/", include(grapple_urls)),
# ...
]
```Done! Now you can proceed onto configuring your models to generate GraphQL types that adopt their structure :tada:
_Your GraphQL endpoint is available at [http://localhost:8000/api/graphql/](http://localhost:8000/api/graphql/)_## Usage
Here is a GraphQL model configuration for the default page from the Wagtail docs:
```python
# ...
from grapple.models import GraphQLString, GraphQLStreamfieldclass BlogPage(Page):
author = models.CharField(max_length=255)
date = models.DateField("Post date")
body = StreamField(
[
("heading", blocks.CharBlock(classname="full title")),
("paragraph", blocks.RichTextBlock()),
("image", ImageChooserBlock()),
]
)content_panels = Page.content_panels + [
FieldPanel("author"),
FieldPanel("date"),
StreamFieldPanel("body"),
]# Note these fields below:
graphql_fields = [
GraphQLString("heading"),
GraphQLString("date"),
GraphQLString("author"),
GraphQLStreamfield("body"),
]
```_For more examples, please refer to the [Documentation](https://wagtail-grapple.readthedocs.io/en/latest/)_
## Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create.
Any contributions [you make](https://github.com/torchbox/wagtail-grapple/graphs/contributors) are **greatly appreciated**.1. Fork the project
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request### Local development
- In the Python environment of your choice, navigate to `tests/`
- Run `python -m pip install -r requirements.txt`
- Run `python manage.py migrate`
- Run server `python manage.py runserver`
- Run tests `python manage.py test`#### With Postgres
- Ensure you have docker and docker compose
- Run `docker compose up`
- Run `export DATABASE_URL="postgres://postgres:postgres@localhost/postgres"`
- In the Python environment of your choice, navigate to `tests/`
- Run `python -m pip install -r requirements.txt`
- Run `python manage.py migrate`
- Run server `python manage.py runserver`
- Run tests `python manage.py test`## Compatibility
Wagtail Grapple supports:
- Python 3.8, 3.9, 3.10 3.11 and 3.12
- Wagtail >= 5.2## License
Distributed under the MIT License. See `LICENSE` for more information.
## Inspired by
- [@tr11](https://github.com/tr11)
- [@tmkn](https://github.com/tmkn)