Open jedie opened 4 years ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
See #965, looks like the same issue I had. And #986 with follow-up fixes.
Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
It is known that GraphQL is not the fastest API when you have many objects, see: https://github.com/graphql-python/graphene/issues/268
If you have many objects, you want to use pagination with
DjangoConnectionField
.I have run some benchmarks for this:
DjangoConnectionField
:Graphene already makes a lot of calls anyway. But with these two variants there is also a very clear difference to be noticed.