mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
8 lines
178 B
Python
8 lines
178 B
Python
"""Phase 21 — Graphene resolver benign control."""
|
|
|
|
_NYX_ADAPTER_MARKER = "import graphene"
|
|
|
|
|
|
def resolve_user(self, info, id):
|
|
_ = (self, info, id)
|
|
return "user-safe"
|