Skip to content

Commit e2e02c0

Browse files
committed
fix links
Signed-off-by: Piotr PG Gajek <[email protected]>
1 parent 050d2f2 commit e2e02c0

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

website/docs/api/cached-soql/soql-cache.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ The following are methods for using `SOQLCache`:
2929
[**CACHE EXPIRATION**](#cache-expiration)
3030

3131
- [`maxHoursWithoutRefresh()`](#maxhourswithoutrefresh)
32-
- [`removeFromCache(List<SObject> records)`](#removeFromCache)
32+
- [`removeFromCache(List<SObject> records)`](#removefromcache)
3333

3434
[**INITIAL QUERY**](#initial-query)
3535

3636
- [`initialQuery()`](#initialquery)
3737

38-
[**SELECT**](#SELECT)
38+
[**SELECT**](#select)
3939

4040
- [`with(SObjectField field)`](#with-field1---field5)
4141
- [`with(SObjectField field1, SObjectField field2)`](#with-field1---field5)

website/docs/api/standard-soql/soql-sub.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The following are methods for `SubQuery`.
4545
[**ORDER BY**](#order-by)
4646

4747
- [`orderBy(SObjectField field)`](#order-by)
48-
- [`orderBy(String field)`](#order-by-string-fields)
48+
- [`orderBy(String field)`](#orderby-string-field)
4949
- [`orderBy(String relationshipName, SObjectField field)`](#orderby-related)
5050
- [`sortDesc()`](#sortdesc)
5151
- [`sort(String direction)`](#sort)

website/docs/api/standard-soql/soql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ The following are methods for using `SOQL`:
150150

151151
[**FIELD-LEVEL SECURITY**](#field-level-security)
152152

153-
- [`userMode()`](#userMode)
153+
- [`userMode()`](#usermode)
154154
- [`systemMode()`](#systemmode)
155155
- [`stripInaccessible()`](#stripinaccessible)
156156
- [`stripInaccessible(AccessType accessType)`](#stripinaccessible)
@@ -1559,7 +1559,7 @@ HAVING COUNT(Name) > 100 OR City LIKE 'San%'
15591559

15601560
### anyHavingConditionMatching
15611561

1562-
When the [havingConditionLogic](#havingConditionLogic) is not specified, all conditions are joined using the `AND` operator by default.
1562+
When the [havingConditionLogic](#havingconditionlogic) is not specified, all conditions are joined using the `AND` operator by default.
15631563

15641564
To change the default condition logic, you can utilize the `anyHavingConditionMatching` method, which joins conditions using the `OR` operator.
15651565

website/docusaurus.config.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,15 @@ const config = {
138138
{
139139
label: 'Building Your Selector',
140140
to: '/building-your-selector'
141-
},
142-
{
143-
label: 'Building Cached Selector',
144-
to: '/build-cached-selector'
145-
},
146-
{
147-
label: 'Overview',
148-
to: '/overview'
149141
}
142+
// {
143+
// label: 'Building Cached Selector',
144+
// to: '/build-cached-selector'
145+
// },
146+
// {
147+
// label: 'Overview',
148+
// to: '/overview'
149+
// }
150150
]
151151
},
152152
{

0 commit comments

Comments
 (0)