(id: string)
| 616 | `; |
| 617 | |
| 618 | export const dismissPostFeedback = (id: string): Promise<EmptyResponse> => { |
| 619 | return gqlClient.request(DISMISS_POST_FEEDBACK_MUTATION, { |
| 620 | id, |
| 621 | }); |
| 622 | }; |
| 623 | |
| 624 | export const banPost = (id: string): Promise<EmptyResponse> => { |
| 625 | return gqlClient.request(BAN_POST_MUTATION, { |