Skip to content

Commit a71592d

Browse files
committed
Fix
1 parent 93e51b8 commit a71592d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

website/src/pages/critique.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ _aka "I have to learn a new syntax"_
55

66
### Use SOQL Evaluator
77

8-
SOQL Lib has 3 different modules: [SOQL](../../docs/soql/getting-started.md/), [SOQL Cache](../../docs/cache/getting-started.md), and [SOQL Evaluator](../../docs/evaluator/getting-started.md). SOQL Evaluator was created for developers who don't want to learn a new syntax but still want to benefit from features like mocking and result functions. You can use [this module](https://github.com/beyond-the-cloud-dev/soql-lib/tree/main/force-app/main/default/classes/main/soql-evaluator) without switching to an entirely new syntax.
8+
SOQL Lib has 3 different modules: [SOQL](/soql/getting-started), [SOQL Cache](/cache/getting-started), and [SOQL Evaluator](/evaluator/getting-started). SOQL Evaluator was created for developers who don't want to learn a new syntax but still want to benefit from features like mocking and result functions. You can use [this module](https://github.com/beyond-the-cloud-dev/soql-lib/tree/main/force-app/main/default/classes/main/soql-evaluator) without switching to an entirely new syntax.
99

1010
```apex
1111
Set<Id> accountIds = SOQLEvaluator.of([SELECT Id FROM Account]).toIds();
@@ -16,7 +16,7 @@ List<String> accountNames = SOQLEvaluator.of([SELECT Id, Name FROM Account]).toV
1616

1717
#### Documentation
1818

19-
SOQL Lib provides comprehensive online documentation with the [playground](./playground.js) and numerous [examples](../../docs/soql/examples/select.md). You can also use the search feature in the top-right corner to find what you're looking for. The Fluent API was designed to stay as close to traditional SOQL syntax as possible. However, due to Apex's `Identifier name is reserved` restriction, some keywords like `select`, `where`, and `limit` couldn't be used.
19+
SOQL Lib provides comprehensive online documentation with the [playground](./playground) and numerous [examples](/soql/examples/select). You can also use the search feature in the top-right corner to find what you're looking for. The Fluent API was designed to stay as close to traditional SOQL syntax as possible. However, due to Apex's `Identifier name is reserved` restriction, some keywords like `select`, `where`, and `limit` couldn't be used.
2020

2121
#### Interfaces
2222

@@ -32,7 +32,7 @@ A simple prompt in your IDE integrated with AI can be very helpful: "Based on SO
3232

3333
#### Result Functions
3434

35-
SOQL Lib provides numerous [result functions](../../docs/soql/examples/result.md) that make your code easier to read and understand. Most operations you typically perform on SOQL results are available as methods in SOQL Lib. Instead of repeating the same transformations throughout your codebase, simply use result methods.
35+
SOQL Lib provides numerous [result functions](/soql/examples/result) that make your code easier to read and understand. Most operations you typically perform on SOQL results are available as methods in SOQL Lib. Instead of repeating the same transformations throughout your codebase, simply use result methods.
3636

3737
**Apex**
3838

@@ -143,6 +143,6 @@ The query builder is just one component of SOQL Lib. SOQL Lib itself is a lightw
143143
- Use the query builder to avoid string concatenation
144144

145145
**For a comprehensive list of benefits, check:**
146-
- [SOQL Basic Features](../../docs/soql/basic-features.md)
147-
- [SOQL Cache Basic Features](../../docs/cache/basic-features.md)
146+
- [SOQL Basic Features](/soql/basic-features)
147+
- [SOQL Cache Basic Features](/cache/basic-features)
148148

File renamed without changes.

0 commit comments

Comments
 (0)