()
| 91 | `; |
| 92 | |
| 93 | export const getUserActions = async (): Promise<Action[]> => { |
| 94 | const res = await gqlClient.request(COMPLETED_USER_ACTIONS); |
| 95 | |
| 96 | return res.actions; |
| 97 | }; |
| 98 | |
| 99 | export const COMPLETE_ACTION_MUTATION = gql` |
| 100 | mutation CompleteAction($type: String!) { |
no outgoing calls
no test coverage detected