Is there a way to force if the fields should be full in the api url?
For example, now you select if the field is full by doing:
class FooResource(ModelResource):
foo = fields.ForeignKey(FooFooResource, 'foo', full=True)
Is it possible to overwrite the full in the url by doing something like:
example.com/api/foo/?foo__full=false
or
example.com/api/foo/?foo__full=true
This is the code to make it work:
I created a gist to make changes: https://gist.github.com/2897326