(id: string)
| 644 | }); |
| 645 | |
| 646 | export const deletePost = (id: string): Promise<EmptyResponse> => { |
| 647 | return gqlClient.request(DELETE_POST_MUTATION, { |
| 648 | id, |
| 649 | }); |
| 650 | }; |
| 651 | |
| 652 | export const clickbaitPost = (id: string): Promise<EmptyResponse> => |
| 653 | gqlClient.request(CLICKBAIT_POST_MUTATION, { |
no outgoing calls
no test coverage detected