[FA-18] Frontend bootstrapped
This commit is contained in:
31
fictionarchive-web/src/graphql/novels.graphql
Normal file
31
fictionarchive-web/src/graphql/novels.graphql
Normal file
@@ -0,0 +1,31 @@
|
||||
query Novels($first: Int, $after: String) {
|
||||
novels(first: $first, after: $after) {
|
||||
edges {
|
||||
cursor
|
||||
node {
|
||||
id
|
||||
url
|
||||
name {
|
||||
texts {
|
||||
language
|
||||
text
|
||||
}
|
||||
}
|
||||
description {
|
||||
texts {
|
||||
language
|
||||
text
|
||||
}
|
||||
}
|
||||
coverImage {
|
||||
originalPath
|
||||
newPath
|
||||
}
|
||||
}
|
||||
}
|
||||
pageInfo {
|
||||
hasNextPage
|
||||
endCursor
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user