13 lines
284 B
Python
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)
|