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)