Closed jmarkleyrepay closed 3 weeks ago
if you prefix a key with _
it will get treated as a local
signal. @bencroker we need to add this to the backend reference docs.
No, the entire store is sent. Shouldn't matter though, because the backend can decide what to do with it, and nested store values can help too.
Ah yes, forgot about the underscore, but otherwise there's no way to specify a few store values to send and a few to exclude.
makes sense, thanks y'all.
hey, here's a scenario I want to ponder with you all.
Lets say you have multiple api calls so you have a
struct
that may look like the below in astore
.{fooData: [...], barData: {...}, view: "someView"}
When I go to do a PUT or a POST the entire store is sent, is there a way to send just
fooData
orbarData
instead of the entirestore
?