(id: string)
| 637 | }; |
| 638 | |
| 639 | export const banPost = (id: string): Promise<EmptyResponse> => { |
| 640 | return gqlClient.request(BAN_POST_MUTATION, { |
| 641 | id, |
| 642 | }); |
| 643 | }; |
| 644 | |
| 645 | export const promotePost = (id: string): Promise<EmptyResponse> => |
| 646 | gqlClient.request(PROMOTE_TO_PUBLIC_MUTATION, { |
no outgoing calls
no test coverage detected