feat: add in schema.py resolver fro _server
This commit is contained in:
@@ -10,5 +10,13 @@ def serialize_datetime(value):
|
||||
|
||||
|
||||
query = QueryType()
|
||||
|
||||
@query.field("_service")
|
||||
def resolve_service(*_):
|
||||
print("Inside the _service resolver")
|
||||
# For now, return a placeholder SDL.
|
||||
sdl = "type Query { _service: _Service } type _Service { sdl: String }"
|
||||
return {"sdl": sdl}
|
||||
|
||||
mutation = MutationType()
|
||||
resolvers = [query, mutation, datetime_scalar]
|
||||
|
Reference in New Issue
Block a user