series-query-keys.tsx 369 B

1234567
  1. export const seriesQueryKeys = {
  2. fetchSeriesData: () => ['fetchSeriesData'] as const,
  3. getSeriesGroups: () => ['getSeriesGroups'] as const,
  4. getSeriesWithGroup: () => ['getSeriesWithGroup'] as const,
  5. getItemsForSeries: (token: string, series_id: string) => ['getItemsForSeries', {token, series_id}] as const,
  6. setToggleItem: () => ['setToggleItem'] as const,
  7. };