web: add non-functional graphql.
This commit is contained in:
23
web/graphql/front_page.graphql
Normal file
23
web/graphql/front_page.graphql
Normal file
@@ -0,0 +1,23 @@
|
||||
query FrontPageQuery($query: [String!], $first: [Int], $after: [String]) {
|
||||
count(query: $query)
|
||||
search(query: $query, first: $first, after: $after) {
|
||||
pageInfo {
|
||||
hasPreviousPage
|
||||
hasNextPage
|
||||
startCursor
|
||||
endCursor
|
||||
}
|
||||
nodes {
|
||||
thread
|
||||
timestamp
|
||||
subject
|
||||
authors
|
||||
tags
|
||||
}
|
||||
}
|
||||
tags {
|
||||
name
|
||||
bgColor
|
||||
fgColor
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user