Run prettier after upgrade
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
ceb98c6781
commit
ee37bebb6e
|
@ -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
|
||||
}
|
||||
`;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue