(organizationId: string, roleName: string)
| 3 | import type { Role } from "#/api/typesGenerated"; |
| 4 | |
| 5 | const getRoleQueryKey = (organizationId: string, roleName: string) => [ |
| 6 | "organization", |
| 7 | organizationId, |
| 8 | "role", |
| 9 | roleName, |
| 10 | ]; |
| 11 | |
| 12 | export const rolesQueryKey = ["roles"]; |
| 13 |
no outgoing calls
no test coverage detected