Joel Turkel
Joel Turkel
I was able to get this working by doing the following: ``` stage.send(:sh_heroku, 'pgbackups:capture', '--expire') ``` Notice you need to pass the command args as separate arguments to the method...
This is an awesome feature and one I would find really useful too! I'm not sure why but the psql command in your pull request didn't work for me. This...
There's currently nothing to do this automatically but could you do it manually by enabling/disabling auto-include at the appropriate time? For example: ```ruby latest_comment = nil Blog.all.reorder(:id => :desc).each_with_index do...
It looks like the block with Goldiloader enabled is creating an ActiveRecord::Relation but isn't actually trigger the execution of that relation or any associated models. Goldiloader only preloads an association...
We also hit this issue because we try to give all of our GraphQL operations easily readable names for monitoring purposes. It's isn't pretty but we were able to workaround...
FWIW - I was able to get multiple IDPs working using the Omniauth `setup` phase with URL path segments rather than subdomains e.g. `http://myapp.com/users/auth/saml/a5749671-b208-408f-94b8-ffa31a845f05`. Using subdomains wasn't feasible for me...
You can also use the https://github.com/salsify/omniauth-multi-provider gem.
Would using GraphQL Ruby's native directives fix #94?
🤔 You're right there's definitely overlap between this issue and #33 but do you have any insight into the use cases where reporting nested changes would be generally useful? My...
Perhaps this should be a dangerous change since clients will get different results if they're selecting `__typename` for this object/interface?