()
| 17 | |
| 18 | /** @public */ |
| 19 | export const groups = () => { |
| 20 | return { |
| 21 | queryKey: groupsQueryKey, |
| 22 | queryFn: () => API.getGroups(), |
| 23 | } satisfies UseQueryOptions<Group[]>; |
| 24 | }; |
| 25 | |
| 26 | const getGroupsByOrganizationQueryKey = (organization: string) => [ |
| 27 | "organization", |
no outgoing calls
no test coverage detected