Allow offset and page args for GraphQL aggregated queries (#17481)

This commit is contained in:
ian
2023-02-10 19:09:32 +08:00
committed by GitHub
parent e96e04efa0
commit d7f16cd8ac

View File

@@ -1016,6 +1016,12 @@ export class GraphQLService {
limit: {
type: GraphQLInt,
},
offset: {
type: GraphQLInt,
},
page: {
type: GraphQLInt,
},
search: {
type: GraphQLString,
},