Skip to content

Commit 918b694

Browse files
committed
W-17274151 Incorporate edits/feedback to md files
1 parent 17fa120 commit 918b694

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/docs/apex-import.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Using Apex in LWC Offline-enabled mobile apps requires additional considerations to ensure proper functioning in offline scenarios. Consider using GraphQL for mobile offline use cases.
44

5-
GraphQL is a flexible, powerful query language for accessing record and other data. You can think of GraphQL as a modern equivalent of SQL, the query language for relational databases.
5+
GraphQL is a flexible, powerful query language for accessing record and other data. You can think of GraphQL as SQL for your API, the query language for relational databases.
66

77
Developers like GraphQL for modern web applications because, in contrast to many REST and CRUD-oriented APIs, GraphQL allows for expressive queries, with features like filtering and scopes, ordering and aggregation, pagination, and relationship traversal to related records. A single query can retrieve many records, and even records of multiple types. Using fewer queries reduces the number of server requests required to load data, which can improve performance. A GraphQL query can specify precisely and only the fields required for a given component, reducing the amount of data that needs to be transmitted before a page can render.
88

src/docs/no-more-than-100-fields.md

-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
This rule flags entities with more than 100 fields. If a root entity query has more than 100 fields and requests over 200 records, the query is capped to 200 records.
44

5-
See [Feature Limitations of Offline GraphQL
6-
](https://developer.salesforce.com/docs/atlas.en-us.mobile_offline.meta/mobile_offline/use_graphql_limitations.htm) for more details.
7-
85
## ❌ Incorrect
96

107
```GraphQL

0 commit comments

Comments
 (0)