Roberto Vasquez Angel

Results 20 comments of Roberto Vasquez Angel

Thank you for your advice! This is a thing that has to be taken into consideration when it comes to performance. I'd like to stay in the bounds of what...

Rails can mount vanilla rack apps via routes: ``` Rails.application.routes.draw do mount SomeRackApp, at: '/foo' end ``` https://guides.rubyonrails.org/routing.html#routing-to-rack-applications

I feel you concerning the performance. Nowadays people tend to prefer to pay a bit more for servers than to pay developers for optimizations...

I'm not sure if I understand. I'll make a small example app where we can expore ideas.

I created a test app: https://github.com/robotex82/rails-agoo-graphql-test The app is available here: http://rails-agoo-graphql-test.herokuapp.com/ I added two rails engines (i called them frontend and backend) with separate graphql endpoints. Both have graphiql...

Decoupling the graphql part of agoo from the usage of agoo as server opens up the implementation to many more use cases (like the simple usage in rails or any...

Sorry, "correct" was meant from the rails perspective. I apologize for this clumsy choice of words. I've seen in this file https://github.com/ohler55/agoo/blob/develop/example/graphql/song.rb that graphql seems to be enabled by this...

I see, so it's more like that: ``` 1.) Agoo as Server with builtin GraphQl and Rails as rack app (This is already possible) +---------------+ +---------------+ | | Rack Interface...

Cases two and three should both work with the same interface. Because its all rack. Is there anythink in ruby that can be done or is it all C? I...

Its sad that my C skills are virtually non-existent. I totally forgot the initial use case i tried to explain here at first. Coming from rails this would be the...