Codebase list python-graphene-sqlalchemy / 6991e949-7335-4a3d-bd10-3b00bf97860c/main examples / nameko_sqlalchemy / service.py
6991e949-7335-4a3d-bd10-3b00bf97860c/main

Tree @6991e949-7335-4a3d-bd10-3b00bf97860c/main (Download .tar.gz)

service.py @6991e949-7335-4a3d-bd10-3b00bf97860c/mainraw · history · blame

#!/usr/bin/env python
from nameko.web.handlers import http

from .app import App


class DepartmentService:
    name = 'department'

    @http('POST', '/graphql')
    def query(self, request):
        return App().query(request)