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

Build status PyPi black pre-commit

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

Explore the docs » · Report Bug · Request Feature

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
  • Middleware 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  >= 3.0, <4.0
Wagtail >= 2.15, <4.1

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 = [
    # ...
    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/

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/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 /example
  • Run pip install -r requirements.txt
  • Run ./manage.py migrate
  • Run server ./manage.py runserver
  • Run tests ./manage.py test

Compatibility

Wagtail Grapple supports:

  • Django >= 3.0, < 4.0
  • Python 3.7, 3.8, 3.9, and 3.10
  • Wagtail >= 2.15, < 4.0

License

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

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.17.0.tar.gz (42.4 kB view details)

Uploaded Source

Built Distribution

wagtail_grapple-0.17.0-py2.py3-none-any.whl (44.0 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

  • Download URL: wagtail-grapple-0.17.0.tar.gz
  • Upload date:
  • Size: 42.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for wagtail-grapple-0.17.0.tar.gz
Algorithm Hash digest
SHA256 c27ea126fe4db09c465e4edfb49dd472d5f0c088e50da3ba29895f49657f829c
MD5 4b1ee9e4c409b1dbf22f909c216c85c7
BLAKE2b-256 ac256da7bfb4165bbb8c2116a6ff9c0d8eb0e204ced0d0d4273e832eeefd0be3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for wagtail_grapple-0.17.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2a5b876aa068ac719bc28d4f58be114b1bbe4bca9e1a7ab50310e4d3039c86cc
MD5 cc6fe293053f6df17fc1be749257f6fd
BLAKE2b-256 cd0dc645078ea47ff79a5259c645da4b0fae9ea185559c68d3adffebf6c5dae6

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