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
| limit |`Int`|`Min: 1``Max: 100``Default: 20` <br> The number of facts to return per request. (for pagination). |
73
-
| skip |`Int`|`Min: 0``Default: 0` <br> The number of items to skip (for pagination). |
74
-
| tags |`String`| Filter facts by tag(s). Takes a list of one or more tag names, separated by a comma (meaning `AND`) or a pipe (meaning `OR`). A comma separated list will match facts that have **_all_** of the given tags. While a pipe (`\|`) separated list will match facts that have **_either_** of the provided tags. |
75
-
76
-
#### Response
77
-
78
-
```ts
79
-
{
80
-
// The index of the last fact returned. When paginating through results,
81
-
// this value would be used as the `skip` parameter when requesting the next
82
-
// "page" of results.
83
-
lastIndex: number
84
-
// The number of facts returned by this request
85
-
resultsCount: number
86
-
// The total number of facts matching this request
0 commit comments