Initial commit from monorepo
This commit is contained in:
12
orders_app/schemas/user_schema.py
Normal file
12
orders_app/schemas/user_schema.py
Normal file
@@ -0,0 +1,12 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user