Added support for paginate.

This commit is contained in:
Napalys
2025-03-21 13:48:32 +01:00
parent 63193fa91c
commit f43510c9aa
3 changed files with 9 additions and 2 deletions

View File

@@ -429,7 +429,11 @@ module ClientRequest {
GotUrlRequest() {
exists(API::Node callee, API::Node got | this = callee.getACall() |
got = getAGotInstance() and
callee = [got, got.getMember(["stream", "get", "post", "put", "patch", "head", "delete"])]
callee =
[
got,
got.getMember(["stream", "get", "post", "put", "patch", "head", "delete", "paginate"])
]
)
}