Run Prettier with updated version

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2020-08-27 15:41:48 +02:00
parent c2f3b4b7e0
commit 9b0b753064
12 changed files with 18 additions and 24 deletions

View File

@@ -163,12 +163,8 @@ export const UPDATE_CURRENT_ACTOR_CLIENT = gql`
$preferredUsername: String!
$name: String!
) {
updateCurrentActor(
id: $id
avatar: $avatar
preferredUsername: $preferredUsername
name: $name
) @client
updateCurrentActor(id: $id, avatar: $avatar, preferredUsername: $preferredUsername, name: $name)
@client
}
`;

View File

@@ -99,7 +99,7 @@ export const GET_DISCUSSION = gql`
query getDiscussion($slug: String!, $page: Int, $limit: Int) {
discussion(slug: $slug) {
comments(page: $page, limit: $limit)
@connection(key: "discussion-comments", filter: ["slug"]) {
@connection(key: "discussion-comments", filter: ["slug"]) {
total
elements {
id