-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor data fetching method from REST to GraphQL
- Loading branch information
Showing
6 changed files
with
113 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// import { gql } from '@apollo/client'; | ||
import { GraphQLClient, gql } from 'graphql-request'; | ||
|
||
const client = new GraphQLClient(process.env.NEXT_PUBLIC_STRAPI_GRAPHQL_URL); | ||
|
||
export const getAllPosts = () => { | ||
const query = gql` | ||
{ | ||
posts(sort: "date:desc") { | ||
id | ||
title | ||
content | ||
cover { | ||
url | ||
} | ||
date | ||
} | ||
} | ||
`; | ||
return client.request(query); | ||
}; | ||
|
||
export const getPostById = (postId) => { | ||
const query = gql` | ||
{ | ||
post(id:"${postId}") { | ||
id | ||
title | ||
content | ||
cover { | ||
url | ||
} | ||
date | ||
} | ||
} | ||
`; | ||
return client.request(query); | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4713a58
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.
Successfully deployed to the following URLs: