Skip to main content

A Django app that speeds up and simplifies implementing a GraphQL endpoint!

Project description

A red g with a grapple hook

Wagtail Grapple

A library to build GraphQL endpoints easily so you can grapple your Wagtail data from anywhere!

Explore the docs »

View Demo · Report Bug · Request Feature

Table of Contents

About The Project

GraphQL Preview Demo

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
    • Settings
    • Redirects
    • Search (on all models)
  • Custom Image & Document model support
  • Pagination support
  • Advanced headless preview functionality built using GraphQL Subscriptions to enable Page previews on any device!

Built With

This library is an abstraction upon and relies heavily on Graphene & Graphene Django. We also use Django Channels and the Potrace image library.

Getting Started

Getting Grapple installed is designed to be as simple as possible!

Prerequisites

Django  >= 2.2, <3.1 (<2.3 if using channels)
wagtail >= 2.5, <2.12

Installation

pip install wagtail_grapple

Add the following to the installed_apps list in your Wagtail settings file:

installed_apps = [
    ...
    "grapple",
    "graphene_django",
    ...
]

For GraphQL Subscriptions with Django Channels, run pip install wagtail_grapple[channels] and add channels to installed apps:

installed_apps = [
    ...
    "grapple",
    "graphene_django",
    "channels",
    ...
]

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):

# Grapple Config:
GRAPHENE = {"SCHEMA": "grapple.schema.schema"}
GRAPPLE_APPS = {
    "home": ""
}

Add the GraphQL URLs to your urls.py:

from grapple import urls as grapple_urls
...
urlpatterns = [
    ...
    url(r"", 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/graphql/

Usage

Here is a GraphQL model configuration for the default page from the Wagtail docs:

...
from grapple.models import (
    GraphQLString,
    GraphQLStreamfield,
)

class 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

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature)
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Local development

  • In the python environment of your choice, navigate to /example
  • Run pip install -r requirements.txt
  • Delete the db.sqlite3 file and run ./manage.py migrate
  • Run server ./manage.py runserver

Compatibility

Wagtail Grapple supports:

  • Django 2.2.x, 3.0.x
  • Python 3.6, 3.7, 3.8 and 3.9
  • Wagtail >= 2.5, < 2.12

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Nathan Horrigan

Project Link: https://github.com/GrappleGQL/wagtail-grapple

Inspired by

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Nathan Horrigan

💻 🐛 📖 🚇 🚧

Cameron Lamb

💻 🐛 📖 🚇 🚧

Dan Braghis

💻 🐛 📖 🚇 🚧

Rui Saraiva

💻 🐛 📖 🚇 🚧

Tibor

💻 🐛 📖

timmysmalls

💻 🐛

Tom Dyson

💻 📖

fabienheureux

💻 🐛 📖

This project follows the all-contributors specification. Contributions of any kind welcome!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wagtail-grapple-0.9.2.tar.gz (31.8 kB view details)

Uploaded Source

Built Distribution

wagtail_grapple-0.9.2-py2.py3-none-any.whl (37.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file wagtail-grapple-0.9.2.tar.gz.

File metadata

  • Download URL: wagtail-grapple-0.9.2.tar.gz
  • Upload date:
  • Size: 31.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/42.0.1 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.3

File hashes

Hashes for wagtail-grapple-0.9.2.tar.gz
Algorithm Hash digest
SHA256 eb86e3da70c3d32409c0fccfa54d5362900ae92d1de1ced94004d132a48f84f7
MD5 273eaaab5bc7f5ee4fbe919e525e7d74
BLAKE2b-256 1f74e5939b2932f53c189f86d8b24eb44fefa0b5524767ed68d63df696865a2a

See more details on using hashes here.

Provenance

File details

Details for the file wagtail_grapple-0.9.2-py2.py3-none-any.whl.

File metadata

  • Download URL: wagtail_grapple-0.9.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 37.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/42.0.1 requests-toolbelt/0.9.1 tqdm/4.40.0 CPython/3.7.3

File hashes

Hashes for wagtail_grapple-0.9.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 50e547055771056f1f6ddf0ab936693a849209005f08b5a3d82c7f5ebf985106
MD5 48d9ebfcfd1d49cbcc3e65a0730a9cbd
BLAKE2b-256 f756c33c65eea7cf9cca17900b928701fbbbcf11c287c7b74b4b5047a1914f97

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page