mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-27 20:29:39 +02:00
9 lines
178 B
Python
9 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"
|