inbox/resolvers/service.py

4 lines
165 B
Python

def resolve_service(*_):
# For now, return a placeholder SDL.
sdl = "type Query { _service: _Service } type _Service { sdl: String }"
return {"sdl": sdl}