You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
apollo-compiler has several error enums, which for users ultimately only end up being accessed behind a DiagnosticList or DiagnosticData. We don't really use the different error enums for anything internally either, so it would be simpler to just have everything in one big enum.
This doesn't strictly need to happen at any particular point because it's not exposed, but it would make it easier to add errors in the future because we won't need to think about where to put them or put them in a place where they don't really belong.
The text was updated successfully, but these errors were encountered:
apollo-compiler has several error enums, which for users ultimately only end up being accessed behind a
DiagnosticList
orDiagnosticData
. We don't really use the different error enums for anything internally either, so it would be simpler to just have everything in one big enum.This doesn't strictly need to happen at any particular point because it's not exposed, but it would make it easier to add errors in the future because we won't need to think about where to put them or put them in a place where they don't really belong.
The text was updated successfully, but these errors were encountered: