Skip to content

Instantly share code, notes, and snippets.

@Bijitakc
Created July 2, 2022 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bijitakc/7a4dd0e8de440d53ea68dc6601f8b943 to your computer and use it in GitHub Desktop.
Save Bijitakc/7a4dd0e8de440d53ea68dc6601f8b943 to your computer and use it in GitHub Desktop.
from graphene_django import DjangoObjectType
from .models import Post
class PostType(DjangoObjectType):
class Meta:
model = Post
fields = "__all__"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment