Django 에서 GraphQL(graphene) 사용하기
여기서는 간단하게 ref. 1 의 내용을 실제로 따라해봤다.
Prerequisite
그렇기 때문에, 아래 2가지는 이미 되어 있다는 가정으로 한다.
install graphene
graphene-django 를 사용하자. 이전의 graphql-django-view 는 deprecated 되었다.
pip install graphene-django
configuration
# graphene_django CONFIGURATION
INSTALLED_APPS += (
'graphene_django',
)
MIDDLEWARE_CLASSES += (
)
GRAPHENE = {
'SCHEMA': 'api.schema.schema' # Where your Graphene schema lives
}
# END graphene_django CONFIGURATION
application source
나머지 부분은 아래 code 를 참고하자. django application 이다.
결과화면
See Also
- 쿠...sal: [컴][파이썬] Django 에서 graphQL library 의 동작(graphene_django)
References
- GitHub - graphql-python/graphene-django: Graphene Django integration
- docs.graphene-python.org/en/latest/quickstart/
댓글 없음:
댓글 쓰기