i started to use graphene with django and for right now i don't need all that overhead of edges and node, i know it's for pagination but right now i only need the fields of my model. To be clear, i still want to be able to use filterset i just dont know how to remove the edges and node overhead. i've tried to use graphene.List but i couldn't add filterset to it. so instead of doing this
{users(nameIcontains:"a")
{
edges{
node{
name
}
}
}
i would like to do this
{users(nameIcontains:"a")
{
name
}