(id: string)
| 638 | }); |
| 639 | |
| 640 | export const deletePost = (id: string): Promise<EmptyResponse> => { |
| 641 | return gqlClient.request(DELETE_POST_MUTATION, { |
| 642 | id, |
| 643 | }); |
| 644 | }; |
| 645 | |
| 646 | export const clickbaitPost = (id: string): Promise<EmptyResponse> => |
| 647 | gqlClient.request(CLICKBAIT_POST_MUTATION, { |
no outgoing calls
no test coverage detected