mutation to update jwt vars added

This commit is contained in:
Anik Ghosh
2022-03-24 21:08:10 +05:30
parent 7d77396657
commit a3d9783aef
3 changed files with 82 additions and 71 deletions

View File

@@ -69,3 +69,13 @@ export const EnableAccess = `
}
}
`;
export const GenerateKeys = `
mutation generateKeys($params: GenerateJWTKeysInput!) {
_generate_jwt_keys(params: $params) {
secret
public_key
private_key
}
}
`;