Codebase list python-graphene-sqlalchemy / eb261a72-346b-401c-b0ed-58cc3392757b/main examples / nameko_sqlalchemy / service.py
eb261a72-346b-401c-b0ed-58cc3392757b/main

Tree @eb261a72-346b-401c-b0ed-58cc3392757b/main (Download .tar.gz)

service.py @eb261a72-346b-401c-b0ed-58cc3392757b/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)