How Do I Update The createAsync() Signal?
I've been trying to use
When using
But when using
How can I update the getter "notes" when using
cache(), load(), and createAsync() because this pattern appears to be the preferred method for fetching data with SolidStart. Unfortunately, I can't figure out how to update the createAsync() signal.When using
createStore() you get access to a getter and a setter:But when using
createAsync() I only get access to a getter.How can I update the getter "notes" when using
createAsync()?