1 min readMar 22, 2018
You could do progressively rendering through GraphQL subscriptions but in my experience it’s not really necessary as you get all the data you need in a single round trip to server. That’s going to be more performant automatically than multiple REST round trips to get the same data since all of those have to go through permission checks, caching layer, etc.