fix integration handler search query

This commit is contained in:
Hongbo Wu 2023-12-06 17:01:39 +08:00
parent 2576aa0f2a
commit ec25a65050

View file

@ -52,8 +52,8 @@ export const search = async (
} sort:updated-asc`
const requestData = JSON.stringify({
query: `query Search($query: String) {
search(query: $query) {
query: `query Search($query: String, $first: Int, $after: String) {
search(query: $query, first: $first, after: $after) {
... on SearchSuccess {
edges {
node {