1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-08 07:15:23 +02:00
portainer/app/react/edge/edge-jobs/queries/jobResults/query-keys.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
220 B
TypeScript
Raw Normal View History

import { EdgeJob } from '../../types';
import { queryKeys as edgeJobQueryKeys } from '../query-keys';
export const queryKeys = {
base: (id: EdgeJob['Id']) =>
[...edgeJobQueryKeys.item(id), 'results'] as const,
};