-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Description
Thanks for the awesome package!
How can I map the introspection endpoint in drf (Django Rest Framework)?
My idea would be like this:
/api/v1//introspect/
I have now implemented this with an endpoint action in my viewset:
@action(detail=False, methods=['get'])
def introspect(self, request):
return Response(DjangoQLSchema(MyModel).as_dict())
But a deprecated warning appears that I should use DjangoQLSchemaSerializer. But how?
DjangoQLSchemaSerializer.serialize(MyModel)
Doesn't work.
Thanks for your help
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels