( organization: string, groupName: string, req?: UsersRequest, )
| 64 | }; |
| 65 | |
| 66 | export const getGroupMembersQueryKey = ( |
| 67 | organization: string, |
| 68 | groupName: string, |
| 69 | req?: UsersRequest, |
| 70 | ) => { |
| 71 | const base = [...getRootGroupQueryKey(organization, groupName), "members"]; |
| 72 | return req ? [...base, req] : base; |
| 73 | }; |
| 74 | |
| 75 | export function groupMembers( |
| 76 | organization: string, |
no test coverage detected