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
By putting the loader inside the client.js, we're sending all the schema creation logic to the client, which is not necessary. Furthermore, the only reason stuff like introspectionQuery is needed is if someone is getting the schema remotely, which I assume is a minority of folks.
We gotta come up with a better way to keep compile-time logic outside of the client payload.
Starting point: run webpack stats & see what depends on transformSchema
The text was updated successfully, but these errors were encountered:
By putting the loader inside the
client.js
, we're sending all the schema creation logic to the client, which is not necessary. Furthermore, the only reason stuff likeintrospectionQuery
is needed is if someone is getting the schema remotely, which I assume is a minority of folks.We gotta come up with a better way to keep compile-time logic outside of the client payload.
Starting point: run webpack stats & see what depends on
transformSchema
The text was updated successfully, but these errors were encountered: