Files
orders/orders_app/schemas/user_schema.py
2026-01-07 09:16:11 +07:00

13 lines
284 B
Python

import graphene
class UserQuery(graphene.ObjectType):
"""User schema - ID token authentication"""
_placeholder = graphene.String(description="Placeholder field")
def resolve__placeholder(self, info):
return None
user_schema = graphene.Schema(query=UserQuery)