Fork me on GitHub
#graphql
<
2018-07-12
>
mattly23:07:24

so I'm running into an odd optimization problem

mattly23:07:23

I need to do selects-field? a number of times in the course of resolving a schema, and the query is large enough that repeated executions of selections-seq is actually a problem

mattly23:07:19

so what I thought I would do is capture the result of selections-seq and then run my own implementation of selects-field? over that,

mattly23:07:24

but now I'm finding I need to pass this around somehow

mattly23:07:48

and I'm kinda debating implementing interceptors on top of my root-level field resolvers