mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fetch content during search on Android
This commit is contained in:
parent
75504178f9
commit
2c09c2b4d6
1 changed files with 2 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
query Search($after: String, $first: Int, $query: String) {
|
||||
search(first: $first, after: $after, query: $query) {
|
||||
search(first: $first, after: $after, query: $query, includeContent: true) {
|
||||
... on SearchSuccess {
|
||||
edges {
|
||||
cursor
|
||||
|
|
@ -38,6 +38,7 @@ query Search($after: String, $first: Int, $query: String) {
|
|||
savedAt
|
||||
updatedAt
|
||||
wordsCount
|
||||
content
|
||||
}
|
||||
}
|
||||
pageInfo {
|
||||
|
|
|
|||
Loading…
Reference in a new issue