Codebase list python-graphene-sqlalchemy / 851e275 examples / nameko_sqlalchemy / service.py
851e275

Tree @851e275 (Download .tar.gz)

service.py @851e275raw · 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)