deploy orm django to a graphql API easily
Project description
Graphene-Django-Crud
Inspired by prisma-nexus and graphene-django-extras, This package turns the django orm into a graphql API.
Installation
For installing graphene-django-crud, just run this command in your shell:
pip install graphene-django-crud
Usage
# schema.py
import graphene
from graphql import GraphQLError
from django.contrib.auth.models import User, Group
from graphene_django_crud.types import DjangoGrapheneCRUD
class UserType(DjangoGrapheneCRUD):
class Meta:
model = User
exclude_fields = ("password",)
input_exclude_fields = ("last_login", "date_joined")
full_name = graphene.String()
@staticmethod
def resolve_full_name(root, info, **kwargs):
return root.first_name + " " + root.last_name
@classmethod
def get_queryset(cls, root, info, **kwargs):
if info.context.user.is_staff:
return User.objects.all()
else:
return User.objects.exclude(is_superuser=True)
@classmethod
def before_mutate(cls, root, info, instance, data):
if not info.context.user.is_staff:
raise GraphQLError('not permited, only staff user')
if "password" in data.keys():
instance.set_password(data.pop("password"))
class GroupType(DjangoGrapheneCRUD):
class Meta:
model = Group
class Query(graphene.ObjectType):
me = graphene.Field(UserType)
user = UserType.ReadField()
users = UserType.BatchReadField()
group = GroupType.ReadField()
groups = GroupType.BatchReadField()
def resolve_me(root, info, **kwargs):
if not info.context.user.is_authenticated:
return None
else:
return info.context.user
class Mutation(graphene.ObjectType):
user_create = UserType.CreateField()
user_update = UserType.UpdateField()
user_delete = UserType.DeleteField()
group_create = GroupType.CreateField()
group_update = GroupType.UpdateField()
group_delete = GroupType.DeleteField()
class Subscription(graphene.ObjectType):
user_created = UserType.CreatedField()
user_updated = UserType.UpdatedField()
user_deleted = UserType.DeletedField()
group_created = GroupType.CreatedField()
group_updated = GroupType.UpdatedField()
group_deleted = GroupType.DeletedField()
#signals.py
from .schema import UserType, GroupType
# Necessary for subscription fields
UserType.generate_signals()
GroupType.generate_signals()
show the generated graphql schema
schema {
query: Query
mutation: Mutation
subscription: Subscription
}
scalar DateTime
input DatetimeFilter {
equals: DateTime
in: [DateTime]
gt: DateTime
gte: DateTime
lt: DateTime
lte: DateTime
}
type ErrorType {
field: String!
messages: [String!]!
}
input GroupCreateInput {
name: String!
user: UserCreateNestedManyInput
}
input GroupCreateNestedManyInput {
create: [GroupCreateInput]
connect: [GroupWhereUniqueInput]
}
type GroupMutationType {
ok: Boolean
errors: [ErrorType]
result: GroupType
}
type GroupNodeType {
count: Int
data: [GroupType]
}
type GroupType {
id: ID!
name: String
user(where: UserWhereInput, limit: Int, offset: Int, orderBy: [String]): UserNodeType!
}
input GroupUpdateInput {
name: String
user: UserUpdateNestedManyInput
}
input GroupUpdateNestedManyInput {
create: [GroupCreateInput]
remove: [GroupWhereUniqueInput]
connect: [GroupWhereUniqueInput]
disconnect: [GroupWhereUniqueInput]
}
input GroupWhereInput {
id: IntFilter
name: StringFilter
user: UserWhereInput
}
input GroupWhereUniqueInput {
id: ID
name: String
}
input GroupWhereWithOperatorInput {
id: IntFilter
name: StringFilter
user: UserWhereInput
OR: [GroupWhereWithOperatorInput]
AND: [GroupWhereWithOperatorInput]
NOT: GroupWhereWithOperatorInput
}
input IntFilter {
equals: Int
in: [Int]
gt: Int
gte: Int
lt: Int
lte: Int
contains: Int
startswith: Int
endswith: Int
regex: String
}
type Mutation {
userCreate(input: UserCreateInput!): UserMutationType
userUpdate(input: UserUpdateInput!, where: UserWhereUniqueInput!): UserMutationType
userDelete(where: UserWhereUniqueInput!): UserMutationType
groupCreate(input: GroupCreateInput!): GroupMutationType
groupUpdate(input: GroupUpdateInput!, where: GroupWhereUniqueInput!): GroupMutationType
groupDelete(where: GroupWhereUniqueInput!): GroupMutationType
}
type Query {
me: UserType
user(where: UserWhereUniqueInput): UserType
users(where: UserWhereWithOperatorInput, limit: Int, offset: Int, orderBy: [String]): UserNodeType
group(where: GroupWhereUniqueInput): GroupType
groups(where: GroupWhereWithOperatorInput, limit: Int, offset: Int, orderBy: [String]): GroupNodeType
}
input StringFilter {
equals: String
in: [String]
contains: String
startswith: String
endswith: String
regex: String
}
type Subscription {
userCreated(where: UserWhereInput): UserType
userUpdated(where: UserWhereInput): UserType
userDeleted(where: UserWhereInput): UserType
groupCreated(where: GroupWhereInput): GroupType
groupUpdated(where: GroupWhereInput): GroupType
groupDeleted(where: GroupWhereInput): GroupType
}
input UserCreateInput {
email: String
firstName: String
groups: GroupCreateNestedManyInput
isActive: Boolean
isStaff: Boolean
isSuperuser: Boolean
lastName: String
password: String!
username: String!
}
input UserCreateNestedManyInput {
create: [UserCreateInput]
connect: [UserWhereUniqueInput]
}
type UserMutationType {
ok: Boolean
errors: [ErrorType]
result: UserType
}
type UserNodeType {
count: Int
data: [UserType]
}
type UserType {
dateJoined: DateTime
email: String
firstName: String
groups: GroupNodeType!
id: ID!
isActive: Boolean
isStaff: Boolean
isSuperuser: Boolean
lastLogin: DateTime
lastName: String
username: String
fullName: String
}
input UserUpdateInput {
email: String
firstName: String
groups: GroupUpdateNestedManyInput
isActive: Boolean
isStaff: Boolean
isSuperuser: Boolean
lastName: String
password: String
username: String
}
input UserUpdateNestedManyInput {
create: [UserCreateInput]
remove: [UserWhereUniqueInput]
connect: [UserWhereUniqueInput]
disconnect: [UserWhereUniqueInput]
}
input UserWhereInput {
dateJoined: DatetimeFilter
email: StringFilter
firstName: StringFilter
groups: GroupWhereInput
id: IntFilter
isActive: Boolean
isStaff: Boolean
isSuperuser: Boolean
lastLogin: DatetimeFilter
lastName: StringFilter
username: StringFilter
}
input UserWhereUniqueInput {
id: ID
username: String
}
input UserWhereWithOperatorInput {
dateJoined: DatetimeFilter
email: StringFilter
firstName: StringFilter
groups: GroupWhereInput
id: IntFilter
isActive: Boolean
isStaff: Boolean
isSuperuser: Boolean
lastLogin: DatetimeFilter
lastName: StringFilter
username: StringFilter
OR: [UserWhereWithOperatorInput]
AND: [UserWhereWithOperatorInput]
NOT: UserWhereWithOperatorInput
}
Fields
ReadField
Query field with a required argument "where" that can return only an instance of the defined type. the "where" argument is composed of only unique fields of the model.
Show doc in graphiql for more information
show query exemple
query{
<read_field_name>(where:{id:1}){
attribute1
attribute2
}
}
# or
query{
<read_field_name>(where:{<unique_field>:value}){
attribute1
attribute2
}
}
# response
{
"data": {
<read_field_name>: {
"id": id_value,
"attribute1": attribute1_value,
"attribute2": attribute1_value
}
}
}
BatchReadField
Query field that can return a node composed of a list items in "data" field and the total number of instances of the result in "count" field.
Show doc in graphiql for more information
show query example
query{
<batch_read_field_name>(where:{id:{in:[1,2,3,4]}}){
count
data {
id
attribute1
attribute2
}
}
}
# response
{
"data": {
<batch_read_field_name>: {
"count" : n
"data": [
{
"id": id_value,
"attribute1": attribute1_value,
"attribute2": attribute1_value,
},
{
"id": id_value,
"attribute1": attribute1_value,
"attribute2": attribute1_value,
},
...
]
}
}
}
CreateField
Mutation field ...
Show doc in graphiql for more information
UpdateField
Mutation field ...
Show doc in graphiql for more information
DeleteField
Mutation field ...
Show doc in graphiql for more information
CreatedField
Subcription field ...
Show doc in graphiql for more information
UpdatedField
Subcription field ...
Show doc in graphiql for more information
DeletedField
Subcription field ...
Show doc in graphiql for more information
Meta parameters
model (required parameter)
The model used for the definition type
only_fields / exclude_fields
Tuple of model fields to include/exclude in graphql type.
Only one of the two parameters can be declared.
input_only_fields / input_exclude_fields
tuple of model fields to include/exclude in graphql inputs type. Only one of the two parameters can be declared.
overload methods
get_queryset(cls, root, info, **kwargs)
@classmethod
def get_queryset(cls, root, info, **kwargs):
return queryset_class
Default it returns "model.objects.all()", the overload is useful for applying filtering based on user. The method is more than a resolver, it is also called in nested request, fetch instances for mutations and subscription verification.
Middleware methode before_XXX(cls, root, info, instance, data) / after_XXX(cls, root, info, instance, data)
@classmethod
def before_mutate(cls, root, info, instance, data):
pass
@classmethod
def before_create(cls, root, info, instance, data):
pass
@classmethod
def before_update(cls, root, info, instance, data):
pass
@classmethod
def before_delete(cls, root, info, instance, data):
pass
@classmethod
def after_mutate(cls, root, info, instance, data):
pass
@classmethod
def after_create(cls, root, info, instance, data):
pass
@classmethod
def after_update(cls, root, info, instance, data):
pass
@classmethod
def after_delete(cls, root, info, instance, data):
pass
Methods called before or after a mutation. The "instance" argument is the instance of the model that goes or has been modified retrieved from the "where" argument of the mutation, or it's been created by the model constructor. The "data" argument is a dict of the "input" argument of the mutation.
The method is also called in nested mutation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for graphene-django-crud-1.0.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e11b8051f1549ca78fe6d22a2c087fbdf625662ee412e5ecbd7c09468dd15960 |
|
MD5 | d6e5af72ce96e375b6bd9f9f9cd3259b |
|
BLAKE2b-256 | f7a294f5e26173161066c50477203251090ea95607a9bb514c2ce15c57827ece |
Hashes for graphene_django_crud-1.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee8a43c1e61ce8128f4125aaac78b45f40efbe304be3cec22b672eae21bf2494 |
|
MD5 | c2bf5389d8305e576a8642fc0c86f636 |
|
BLAKE2b-256 | 93b8184f064a9486a8b8865eb5a2b08eb5622801a62f7b53f066fdc006873bbd |