Codebase list python-graphene-sqlalchemy / 3194c95b-15fc-4364-93c2-98071e371fa4/main examples / nameko_sqlalchemy / service.py
3194c95b-15fc-4364-93c2-98071e371fa4/main

Tree @3194c95b-15fc-4364-93c2-98071e371fa4/main (Download .tar.gz)

service.py @3194c95b-15fc-4364-93c2-98071e371fa4/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)