(id: string)
| 674 | }); |
| 675 | |
| 676 | export const deletePost = (id: string): Promise<EmptyResponse> => { |
| 677 | return gqlClient.request(DELETE_POST_MUTATION, { |
| 678 | id, |
| 679 | }); |
| 680 | }; |
| 681 | |
| 682 | export const clickbaitPost = (id: string): Promise<EmptyResponse> => |
| 683 | gqlClient.request(CLICKBAIT_POST_MUTATION, { |
no outgoing calls
no test coverage detected