I've successfully built a GraphQL based API using Graphene-Django. In doing this, I used Relay.
My front-end colleagues are annoyed with having to specify "edges & node" and then pull out the data they want from the similar looking response.
Is there a way to use Relay without "edges & node"?
Robert
Edges and node are part of specification of the pagination. If you don't need pagination, you can use simple lists(graphene.List) without edges and node
see: documentation