mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
fix integration handler search query
This commit is contained in:
parent
2576aa0f2a
commit
ec25a65050
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue