From a0d00743cbbdb77b27c1a3d5711407ffed5befac Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sat, 20 Aug 2022 21:39:51 +0200 Subject: refactor(types): move and rename GraphQL types The api file in services was not really readable. So I move the types and I also rewrite a little the fetch function. I also rename most of the type to avoid conflict with preexisting types (like Node) and to keep consistency. --- src/services/graphql/articles.query.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/services/graphql/articles.query.ts') diff --git a/src/services/graphql/articles.query.ts b/src/services/graphql/articles.query.ts index 3e1f575..46e3df6 100644 --- a/src/services/graphql/articles.query.ts +++ b/src/services/graphql/articles.query.ts @@ -181,7 +181,7 @@ export const totalArticlesQuery = `query PostsTotal($search: String = "") { /** * Query the end cursor based on the queried posts number. */ -export const articlesEndCursor = `query EndCursorAfter($first: Int) { +export const articlesEndCursorQuery = `query EndCursorAfter($first: Int) { posts(first: $first) { pageInfo { hasNextPage -- cgit v1.2.3