-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
W-16620689 Add md files for [LWC Auth Debug] LSP to reduce OOM issues…
… story (#165)
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# adapters-local-change-not-aware | ||
|
||
The wire adapters `getRelatedListRecords` and `getRelatedListCount` work with records while offline. However, those wire adapters won't update the related list to add or remove records that are created or deleted while offline. | ||
|
||
As an alternative to using `getRelatedListRecords`, use GraphQL to create a related list that supports records that are created or deleted while offline. | ||
|
||
Currently, there isn't a GraphQL equivalent to `getRelatedListCount` that works offline. | ||
|
||
See [Parent-to-Child Relationships](https://developer.salesforce.com/docs/platform/graphql/guide/filter-parent.html#parent-to-child-relationships) in the GraphQL API Developer Guide for more details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# over-sized-record | ||
|
||
Creating queries that request a large number of fields or large size fields could result in large data sizes (32 KB) that negatively affect mobile app performance, and potentially result in fewer returned records than expected. | ||
|
||
To prevent potential performance issues: | ||
- Modify your query to request fewer than 100 fields. | ||
- Avoid requesting Base 64-encoded fields. | ||
- Avoid requesting 5 text area fields. | ||
- Avoid requesting related lists. |