Hi, in Apollo 1.x I use to enable query batching like so:
const networkInterface = createMeteorNetworkInterface({batchInterval: 100});
very simple. How can I achieve the same with Apollo 2, since my network interface changed to:
const httpLink = new HttpLink({ uri: Meteor.absoluteUrl('graphql') });
not really finding any help in the documentation on this. Any suggestions would be appreciated.
For those interested, Nice to see the Apollo 2 update at the start of November reduced the average resolution time by almost a second. Would like to see if batching can further speed this up.
(if you saw the previous chart on this post, I accidentally pulled it from dev environment, not production, so that one was wrong.)