From 69de04f1ebc34285ea98083422ecc58be77e7a90 Mon Sep 17 00:00:00 2001 From: Matt Rider Date: Mon, 22 Jul 2019 05:52:01 -0300 Subject: [PATCH] Remove extra parantheses --- webapp/graphql/PostQuery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/graphql/PostQuery.js b/webapp/graphql/PostQuery.js index 61c3a97bc..eec2b25d8 100644 --- a/webapp/graphql/PostQuery.js +++ b/webapp/graphql/PostQuery.js @@ -78,7 +78,7 @@ export default i18n => { export const filterPosts = i18n => { const lang = i18n.locale().toUpperCase() - return gql(` + return gql` query Post($filter: _PostFilter, $first: Int, $offset: Int, $orderBy: [_PostOrdering]) { Post(filter: $filter, first: $first, offset: $offset, orderBy: $orderBy) { id