graphql

2023-02-15T22:31:42.254069Z

Is there any guidance out there on organizing larger lacinia projects, particularly in terms of splitting up schema and resolver files? Do people prefer to keep a single large schema file and/or single large resolvers file? And if not, along what lines do they split things up?

hlship 2023-02-15T22:40:27.942909Z

At Walmart, we were federated, so we made use of a single SDL file and our architecture involved very few resolvers, primarily just the root operations. Certainly, I vastly prefered the inject-resolvers approach to the attach-resolvers approach (the latter dating back to the non-public Lacinia prototype, before I even joined Walmart).

2023-02-15T23:13:38.203569Z

Interesting, I was wondering about switching to an SDL file from EDN!