Skip to main content

Strawberry GraphQL Django extension

Project description

Strawberry GraphQL Django extension

CI PyPI PyPI - Downloads

This library provides helpers to generate types, mutations and resolvers for Django models.

NOTE: Package v0.1.0 introduced new API. See more detailed description about new API from the ticket. Old version is still available in v0.0.x branch.

Installing strawberry-graphql-django packet from the python package repository.

pip install strawberry-graphql-django

Example project files

See example Django project examples/django.

models.py

from django.db import models

class User(models.Model):
    name = models.CharField(max_length=50)
    groups = models.ManyToManyField('Group', related_name='users')

class Group(models.Model):
    name = models.CharField(max_length=50)

types.py

import strawberry
import strawberry_django
from . import models

# model types are collected into register. type converters use
# register to resolve types of relation fields
types = strawberry_django.TypeRegister()

@types.register
@strawberry_django.type(models.User, types=types)
class User:
    # types can be extended with own fields and resolvers
    @strawberry.field
    def name_upper(root) -> str:
        return root.name.upper()

@types.register
@strawberry_django.type(models.Group, fields=['id'], types=types)
class Group:
    # fields can be remapped
    group_name: str = strawberry_django.field(field_name='name')

@types.register
@strawberry_django.input(models.User)
class UserInput:
    pass

schema.py

import strawberry, strawberry_django
from . import models
from .types import types

Query = strawberry_django.queries(models.User, models.Group, types=types)
Mutation = strawberry_django.mutations(models.User, types=types)
schema = strawberry.Schema(query=Query, mutation=Mutation)

urls.py

from django.urls import include, path
from strawberry.django.views import AsyncGraphQLView
from .schema import schema

urlpatterns = [
    path('graphql', AsyncGraphQLView.as_view(schema=schema)),
]

Now we have models, types, schema and graphql view. It is time to crete database and start development server.

manage.py makemigrations
manage.py migrate
manage.py runserver

Mutations and Queries

Once the server is running you can open your browser to http://localhost:8000/graphql and start testing auto generated queries and mutations.

Create new user.

mutation {
  createUsers(data: { name: "my user" }) {
    id
  }
}

Make first queries.

query {
  user(id: 1) {
    name
    groups {
      groupName
    }
  }
  users(filters: ["name__contains='my'"]) {
    id
    name
    nameUpper
  }
}

Update user data.

mutation {
  updateUsers(data: {name: "new name"}, filters: ["id=1"]) {
    id
    name
  }
}

Finally delete user.

mutation {
  deleteUsers(filters: ["id=1"])
}

Django authentication examples

strawberry_django provides mutations for authentications.

schema.py:

class IsAuthenticated(strawberry.BasePermission):
    def has_permission(self, source: Any, info: Info, **kwargs) -> bool:
        self.message = "Not authenticated"
        return info.context.request.user.is_authenticated

@strawberry.type
class Query:
    @strawberry.field(permission_classes=[IsAuthenticated])
    def current_user(self, info: Info) -> types.User:
        return info.context.request.user

schema = strawberry.Schema(query=Query, mutation=strawberry_django.AuthMutation)

Login and logout with:

mutation {
  login(username:"myuser", password:"mypassword")
  logout()
}

Get current user with:

query {
  currentUser {
    id
    firstName
    lastName
  }
}

Running unit tests

poetry install
poetry run pytest

Contributing

I would be more than happy to get pull requests, improvement ideas and feedback from you.

Project details


Release history Release notifications | RSS feed

This version

0.1.1

Download files

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

Source Distribution

strawberry-graphql-django-0.1.1.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file strawberry-graphql-django-0.1.1.tar.gz.

File metadata

File hashes

Hashes for strawberry-graphql-django-0.1.1.tar.gz
Algorithm Hash digest
SHA256 eda5d3392e2a27a4e0231f76436139c88e1051e38c365fb72b6b93a16f8dfc2b
MD5 ddbb300877359bd71482f712ea02ae0e
BLAKE2b-256 4016f20b6ec86791221da7d8a65d709f5d9e406035e9568c3a186ca0f40202c6

See more details on using hashes here.

Provenance

File details

Details for the file strawberry_graphql_django-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for strawberry_graphql_django-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4df0a700e5fd5ee6f529c47cb18c69c94c085f9c64a4ad611b1b9c7e5ab1ddae
MD5 74d130180e807ad1a890a23e3c88922d
BLAKE2b-256 0d806e517f8d2a02828abdcc9fb1df060e581269283ac446d7a7615703d91ab2

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