Jeff Carbonella
Jeff Carbonella
I have the need to call a function objects, including nested objects, after they've been denormalized. Since it includes nested entities, if I waited until the entire object was denormalized...
### Motivation You can manually type the `resolve` method of your graphql mutations but there's nothing guaranteeing the sig you added will match the types specified in your graphql definition....
### Motivation We often want to generate RBI for every model, worker, etc inside a namespace. Currently the only way to do that involves crawling ObjectSpace in a console or...
Similar to #2683, we codegen the T::Struct initializer so that instead of initializing variables by looping through props at runtime, we generate code at load time (or earlier if using...
I'm building a form and I'm running into some issues with nested resources. Here's a simplified version of my data model: ``` json { "id": 123, "name": "Bob Smith", "email_addresses":...
Flattens scopes, so: ```ruby module A class B FOO = 42 class C module D; end end end end module E; end ``` becomes: ```ruby module A; end class A::B...