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