( organization: string, groupName: string, req: GroupRequest, )
| 44 | ]; |
| 45 | |
| 46 | export const getGroupQueryKey = ( |
| 47 | organization: string, |
| 48 | groupName: string, |
| 49 | req: GroupRequest, |
| 50 | ) => { |
| 51 | const base = getRootGroupQueryKey(organization, groupName); |
| 52 | return [...base, req]; |
| 53 | }; |
| 54 | |
| 55 | export const group = ( |
| 56 | organization: string, |
no test coverage detected