(id: string)
| 653 | }); |
| 654 | |
| 655 | export const deletePost = (id: string): Promise<EmptyResponse> => { |
| 656 | return gqlClient.request(DELETE_POST_MUTATION, { |
| 657 | id, |
| 658 | }); |
| 659 | }; |
| 660 | |
| 661 | export const clickbaitPost = (id: string): Promise<EmptyResponse> => |
| 662 | gqlClient.request(CLICKBAIT_POST_MUTATION, { |
no outgoing calls
no test coverage detected