···11+---
22+'@urql/exchange-graphcache': patch
33+---
44+55+Fix untranspiled class property initializer syntax being leftover in build output. (Regression in #3053)
+6-2
exchanges/graphcache/src/store/store.ts
···106106 }
107107 }
108108109109- keyOfField = keyOfField;
109109+ keyOfField(fieldName: string, fieldArgs?: FieldArgs) {
110110+ return keyOfField(fieldName, fieldArgs);
111111+ }
110112111113 keyOfEntity(data: Entity) {
112114 // In resolvers and updaters we may have a specific parent
···148150 return link || null;
149151 }
150152151151- resolveFieldByKey = this.resolve;
153153+ resolveFieldByKey(entity: Entity, field: string, args?: FieldArgs) {
154154+ return this.resolve(entity, field, args);
155155+ }
152156153157 invalidate(entity: Entity, field?: string, args?: FieldArgs) {
154158 const entityKey = this.keyOfEntity(entity);