Jimmy Jia

Results 32 issues of Jimmy Jia

This PR demonstrates injecting the JIT without adding any explicit hooks in Marshmallow. The tests in this test suite all pass, but I didn't patch the upstream vendored tests, as...

This is a follow-up to discussion in https://github.com/graphql/graphql-relay-js/issues/20#issuecomment-416809871. The current coercion rules, for convenience, allow passing in singular literals in positions expecting lists. However, they do not allow passing in...

💡 Proposal (RFC 1)

Follow-up feature request from https://github.com/relay-tools/found-relay/issues/294

cc @cancan101 @itajaja This is obviously very rough and the final API will need to be more flexible, but the basic approach appears to work. Thoughts?

For combining authorization, in many cases it would be simpler to do something like: ```python class WidgetView(GenericModelView): authorization = WidgetAuthorization() | AdminAuthorization() ``` Instead of having to define a new...

For larger APIs, the composition model in Flask-RESTy gets a bit messy. We often end up with multiple parallel complex inheritance trees in separate `auth`, `schemas`, and `views` modules, and...