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: app/spicedb/concepts/querying-data/page.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ It's always preferable to perform one call to `CheckBulkPermissions` with N chec
37
37
38
38
[`LookupResources`](https://buf.build/authzed/api/docs/main:authzed.api.v1#authzed.api.v1.PermissionsService.LookupResources) is a good choice when you need to find all resources of a given type that a specific subject can access. It supports cursoring and works well for moderate result sizes.
39
39
40
-
If you’re expecting more than ~10,000 results, this isn't ideal. See [this](../modeling/protecting-a-list-endpoint) for more details.
40
+
If you’re expecting more than ~10,000 results, this isn't ideal. See [this](../modeling/protecting-a-list-endpoint#checking-with-checkbulkpermissions) for more details.
Copy file name to clipboardExpand all lines: app/spicedb/modeling/protecting-a-list-endpoint/page.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ your API, in addition to the overall size of your data.
23
23
24
24
## Filtering with LookupResources
25
25
26
-
If the number of resources that a user has access to is sufficiently small, you can use the [`LookupResources`] API to get the full
26
+
If the number of resources that a user has access to is small (e.g. less than 10,000 resources), you can use the [`LookupResources`] API to get the full
27
27
list of resources for which a user has a particular permission, and then use that as a filtering clause in your database
0 commit comments