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