Jeff Johnson
Jeff Johnson
## To Reproduce From the documentation [Adding Parameters](https://fuel.gitbook.io/documentation/core/fuel#adding-parameters) (`body()` in the docs should be `body`): ```Kotlin Fuel.post("https://httpbin.org/post", listOf("foo" to "foo", "bar" to "bar")) .also { println(it.url) } .also { println(String(it.body.toByteArray()))...
This works for saving diagrams to PDF but does not work with static images at the same time. The copy command doesn't seem to be doing anything.
Models with the same name in different apps are stored with the same key in graphene_django_extras.registry.Registry which then causes errors when using those models in GraphQL. Given: foo.models.Bar bah.models.Bar Even...
I was happy to learn that graphene added support for turning off camel casing field names. `schema = graphene.Schema(query=Query, auto_camelcase=False)` It all seems to work except for DjangoListObjectType has totalCount....
declined was defined twice by instead of accepted and declined
Hi, I often want to test my changes against the latest production database and make sure the migrations are correct. I wrote a script that prints the two simple commands...