* Add folder for api settings * Init create api key page * Update create api key page * Implement api call to create apiKey * Add create api key mutation * Get id when creating apiKey * Display created Api Key * Add delete api key button * Remove button from InputText * Update stuff * Add test for ApiDetail * Fix type * Use recoil instead of router state * Remane route paths * Remove online return * Move and test date util * Remove useless Component * Rename ApiKeys paths * Rename ApiKeys files * Add input text info testing * Rename hooks to webhooks * Remove console error * Add tests to reach minimum coverage
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const DELETE_ONE_API_KEY = gql`
|
|
mutation DeleteOneApiKey($apiKeyId: String!) {
|
|
revokeOneApiKey(where: { id: $apiKeyId }) {
|
|
id
|
|
}
|
|
}
|
|
`;
|