Skip to content

Commit 71abf19

Browse files
authored
blog: update check function blog (#329)
* blog: check function * update * update
1 parent 2625001 commit 71abf19

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

blog/check-function/index.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ date: 2024-07-13
77
image: ./cover.jpg
88
---
99

10+
import RecursionIssue from './recursion-issue.png';
11+
1012
# How the "check" Function Helps Keep Your Policies DRY
1113

1214
![Cover Image](cover.jpg)
@@ -209,9 +211,13 @@ model Folder {
209211
}
210212
```
211213

212-
This will be a hard problem to solve since Prisma inherently doesn't support recursive queries (check [this issue](https://github.com/prisma/prisma/issues/3725) for details). A possible solution is to expand the recursion with a (configurable) finite levels of depth.
214+
This will be a hard problem to solve since Prisma inherently doesn't support recursive queries. You can check the following issue for more details:
215+
216+
<div align="center">
217+
<a href="https://github.com/prisma/prisma/issues/3725"><img src={RecursionIssue} alt="Prisma recursion issue" width="600px" style={{'border-radius':'0.5rem'}} /></a>
218+
</div>
213219

214-
Is this something your app needs?
220+
A possible solution is to expand the recursion with a (configurable) finite levels of depth. Is this something your app needs?
215221

216222
### 3. Other forms of duplication?
217223

233 KB
Loading

0 commit comments

Comments
 (0)