Files
teams/teams_app/schemas/public_schema.py
2026-01-07 09:17:34 +07:00

13 lines
295 B
Python

import graphene
class PublicQuery(graphene.ObjectType):
"""Public schema - no authentication required"""
_placeholder = graphene.String(description="Placeholder field")
def resolve__placeholder(self, info):
return None
public_schema = graphene.Schema(query=PublicQuery)