mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-01 12:44:28 +00:00
12 lines
247 B
GraphQL
12 lines
247 B
GraphQL
query searchPosts($query: String!, $firstPosts: Int, $postsOffset: Int) {
|
|
searchPosts(query: $query, firstPosts: $firstPosts, postsOffset: $postsOffset) {
|
|
postCount
|
|
posts {
|
|
__typename
|
|
id
|
|
title
|
|
content
|
|
}
|
|
}
|
|
}
|