We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f614bb commit 5e85d64Copy full SHA for 5e85d64
graphql/category.graphql
@@ -1,4 +1,4 @@
1
extend type Query {
2
- categories: [Category!]! @all
+ categories: [Category!]! @paginate
3
category(id: ID! @eq): Category @find
4
}
graphql/post.graphql
@@ -1,5 +1,5 @@
- posts: [Post!]! @all
+ posts: [Post!]! @paginate
post(id: ID! @eq): Post @find
search(key: String!): [Post]!
5
popularPosts: [Post]!
graphql/tag.graphql
- tags: [Tag!]! @all
+ tags: [Tag!]! @paginate
tag(id: ID! @eq): Tag @find
0 commit comments