Codebase list python-graphene-sqlalchemy / 55a2c3e examples / nameko_sqlalchemy / service.py
55a2c3e

Tree @55a2c3e (Download .tar.gz)

service.py @55a2c3eraw · history · blame

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


class DepartmentService:
    name = 'department'

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