Run prettier after upgrade

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-09-21 12:15:37 +02:00
parent ceb98c6781
commit ee37bebb6e
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
2 changed files with 7 additions and 3 deletions

View File

@ -163,8 +163,12 @@ 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