project_graphql_blog icon indicating copy to clipboard operation
project_graphql_blog copied to clipboard

With featured and recent posts, categories. full markdown articles, author information, comments, and much more, this fully responsive CMS Blog App is the best Blog Application that you can currently...

Results 47 project_graphql_blog issues
Sort by recently updated
recently updated
newest added

```npx create-next-app -e with-tailwindcss``` is the command I have used. In the pages folder instead of the js file, it's created the tsx file.

Unhandled Runtime Error Error: [line: 5] field 'name' is not defined in 'PostAuthor': {"response":{"errors":[{"message":"[line: 5] field 'name' is not defined in 'PostAuthor'"}],"data":null,"extensions":{"requestId":"cl6q906fv1ekg0b1ba0bv1437"},"status":400,"headers":{"map":{"cache-control":"private, no-store","content-length":"147","content-type":"application/json"}}},"request":{"query":"\n query GetCategoryPost() {\n posts(where: {featuredPost: true}) {\n...

![image](https://user-images.githubusercontent.com/6874833/183597076-f3efa0e8-d5b2-4792-a402-9bb138275862.png)

I'm going through the tutorial but implementing using TypeScript and tsx instead of Javascript. I'm stuck at the services/index.ts ```ts import { request, gql, GraphQLClient } from 'graphql-request'; const graphqlAPI...

In `components/Comments.jsx` **line 14**: If we don't add `slug` to `[]`, the comments won't display until we refresh the page. Solution: add `slug` to `[]` like this: **from** ``` useEffect(()...

I set fallback to true and used a loader just like in the video, but on deployment new posts returns 404. ![Captura1](https://user-images.githubusercontent.com/66027111/181670023-d26b5da0-99bd-439e-b216-86f7350e3533.PNG) ![Captura2](https://user-images.githubusercontent.com/66027111/181670041-8bcf59b6-59d2-4a73-80d8-d0d8cf00c914.PNG) I test it on production locally using...

on line 20 the CCS class "text-ls" doesn't exist, i think you mean "text-lg"

In `/services/index.js` file, let change the `raw` in `content` of `getPostDetails` function to `html` (**line 76**): Detail: **from** ``` export const getPostDetails = async (slug) => { const query =...

'slug' must be defined, why is this still happening even though i have added is empty from lodash ? ![Screenshot_4](https://user-images.githubusercontent.com/81966133/177258575-90bfd3b5-ef52-4100-89f0-3a3a6a25386c.png) ![Screenshot_5](https://user-images.githubusercontent.com/81966133/177258580-573c926c-fbef-49fe-a4fc-9049dfecb204.png) ![Screenshot_6](https://user-images.githubusercontent.com/81966133/177258582-5ca33983-eca6-4afc-abb5-f18969ec2ca7.png)

I want to embed some links in my posts. Graphcms allows me to include links, but they do not display on my website. I appreciate any suggestions you may have.