-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs/adding-pagination.md #73
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add some small reviews, this will be go to be merged post these changes
|
||
Each page will [query GraphQL](/docs/graphql-concepts/) for those specific items. | ||
प्रत्येक पेज में उन विशिष्ट आइटम्स के लिए [क्वेरी GraphQL](/docs/graphql-concepts/) होगा। |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
क्वेरी GraphQL
=> GraphQL क्वेरी
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
होगा
=> होगी
@@ -123,11 +123,11 @@ exports.onCreateNode = ({ node, actions, getNode }) => { | |||
} | |||
``` | |||
|
|||
The code above will create an amount of pages that is based on the total number of posts. Each page will list `postsPerPage`(6) posts, until there are less than `postsPerPage`(6) posts left. | |||
The path for the first page is `/blog`, following pages will have a path of the form: `/blog/2`, `/blog/3`, etc. | |||
ऊपर दिया गया कोड उन पेजेज़ की मात्रा बनाएगा जो कुल पोस्ट्स की संख्या पर आधारित हैं। प्रत्येक पेज `postsPerPage` (6) पोस्ट्स को लिस्ट करेगा, जब तक कि `postsPerPage`(6) से कम पोस्ट्स न हों। |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`postsPerPage` (6)
=>
`postsPerPage`(6)
removes extra space
The code above will create an amount of pages that is based on the total number of posts. Each page will list `postsPerPage`(6) posts, until there are less than `postsPerPage`(6) posts left. | ||
The path for the first page is `/blog`, following pages will have a path of the form: `/blog/2`, `/blog/3`, etc. | ||
ऊपर दिया गया कोड उन पेजेज़ की मात्रा बनाएगा जो कुल पोस्ट्स की संख्या पर आधारित हैं। प्रत्येक पेज `postsPerPage` (6) पोस्ट्स को लिस्ट करेगा, जब तक कि `postsPerPage`(6) से कम पोस्ट्स न हों। | ||
पहले पेज के लिए पथ `/blog` है, निम्न पेजेज़ का पथ इस रूप: `/blog/2`, `/blog/3`, आदि में होगा। |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
पथ
=> पाथ
|
||
- See [gatsby-paginated-blog](https://github.com/NickyMeuleman/gatsby-paginated-blog) [(demo)](https://nickymeuleman.github.io/gatsby-paginated-blog/) for an extension of the official [gatsby-starter-blog](https://github.com/gatsbyjs/gatsby-starter-blog) with pagination in place | ||
- देखें आधिकारिक [gatsby-स्टार्टर-ब्लॉग] (https://github.com/gatsbyjs/gatsby-starter-blog) के स्थान पर इसका विस्तार [Gatsby-पेजीनेटेड-ब्लॉग] (https://github.com/NickyMeuleman/gatsby-paginated-blog) [(डेमो)] (https://nickymeuleman.github.io/gatsby-paginated-blog/) पेजिनेशन के साथ। |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Revisit this line translation
No description provided.