Codebase list python-graphene-sqlalchemy / 45106445-780b-4d99-9921-0eea9bc27ff9/upstream examples / nameko_sqlalchemy / service.py
45106445-780b-4d99-9921-0eea9bc27ff9/upstream

Tree @45106445-780b-4d99-9921-0eea9bc27ff9/upstream (Download .tar.gz)

service.py @45106445-780b-4d99-9921-0eea9bc27ff9/upstreamraw · 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)