You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/check-function/index.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ date: 2024-07-13
7
7
image: ./cover.jpg
8
8
---
9
9
10
+
import RecursionIssue from './recursion-issue.png';
11
+
10
12
# How the "check" Function Helps Keep Your Policies DRY
11
13
12
14

@@ -209,9 +211,13 @@ model Folder {
209
211
}
210
212
```
211
213
212
-
ThiswillbeahardproblemtosolvesincePrismainherentlydoesn'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
+
ThiswillbeahardproblemtosolvesincePrismainherentlydoesn't support recursive queries. You can check the following issue for more details:
0 commit comments