dick
03/31/2022, 3:38 PMpluck() and what can I replace it with?sknowlton
03/31/2022, 3:46 PMQuickCollection which were basically CFCollection (from Forgebox) which support cool things like pluck(). There was a big performance hit in using QuickCollections so they're still there but disabled by default. https://quick.ortusbooks.com/guide/collections#usdrenderdatasknowlton
03/31/2022, 3:46 PMdick
03/31/2022, 4:10 PMasMemento() supports the same args as getMemento() but that doesn't seem to work for me. Could I be doing it wrong?sknowlton
03/31/2022, 4:15 PM.asMemento() is just a convenience for .get().map( ( thing ) => { return thing.getMemento( args ); } ) and it does take the same arguments.sknowlton
03/31/2022, 4:16 PMignoreDefaults if you defined a this.memento - Quick now does that by default so your this.memento stuff should only be overrides, and should go inside of instanceReady()dick
03/31/2022, 4:40 PMthis.memento but adding ignoreDefaults sorted it. Thanks again!elpete
03/31/2022, 8:26 PM