feat(REQ-2972): graphql Api支持传统分页和游标分页

This commit is contained in:
chenwenjian 2024-09-23 19:52:34 +08:00
parent 769126b9f8
commit 2af9ed3271
2 changed files with 4 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class LogFindReq {
* 2. 若与{@code lastId}同时存在则优先使用{@code lastId}参数
* </p>
*/
private Long pageNum;
private Integer pageNum;
/**
* 分页大小{@code pageNum}{@code lastId}搭配使用

View File

@ -25,6 +25,9 @@ input LogFindReq {
messageConditions: [Condition]
start: String
end: String
pageNum: Int
pageSize: Int
lastId: String
}
input Condition {