@lotics/app-sdk 0.87.6 → 0.87.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/workflows.md +5 -0
- package/package.json +1 -1
package/docs/workflows.md
CHANGED
|
@@ -688,6 +688,11 @@ to let the call site supply the type. Keep the loop for FINDING values and put t
|
|
|
688
688
|
a filtered `query_records` that scans for the row you just made: the filtered form is both an
|
|
689
689
|
extra scan and wrong under concurrency, since a row created between your write and your read
|
|
690
690
|
matches the same filter.
|
|
691
|
+
- **A write that makes rows live can be refused by the plan's record allowance.** `create_records`,
|
|
692
|
+
a draft submit and a restore all count against the organization's live rows; the one that would
|
|
693
|
+
exceed the allowance fails the run with a sentence for a person ("Your plan's record allowance is
|
|
694
|
+
full…", in the reader's language) and none of that call's rows land. Archiving records frees
|
|
695
|
+
room. Updates never trip it.
|
|
691
696
|
|
|
692
697
|
### Keep expensive steps off the path the caller waits on
|
|
693
698
|
|