-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
bengotow
committed
Nov 5, 2024
1 parent
de3fbe0
commit 07654fe
Showing
6 changed files
with
67 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
js_modules/dagster-ui/packages/ui-core/src/runs/RunsFeedTableEntryFragment.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import {RUN_ACTIONS_MENU_RUN_FRAGMENT} from './RunActionsMenu'; | ||
import {gql} from '../apollo-client'; | ||
import {BACKFILL_STEP_STATUS_DIALOG_BACKFILL_FRAGMENT} from '../instance/backfill/BackfillFragments'; | ||
import {PARTITION_SET_FOR_BACKFILL_TABLE_FRAGMENT} from '../instance/backfill/BackfillTable'; | ||
|
||
export const RUNS_FEED_TABLE_ENTRY_FRAGMENT = gql` | ||
fragment RunsFeedTableEntryFragment on RunsFeedEntry { | ||
__typename | ||
id | ||
runStatus | ||
creationTime | ||
startTime | ||
endTime | ||
tags { | ||
key | ||
value | ||
} | ||
jobName | ||
assetSelection { | ||
... on AssetKey { | ||
path | ||
} | ||
} | ||
assetCheckSelection { | ||
name | ||
assetKey { | ||
path | ||
} | ||
} | ||
... on Run { | ||
repositoryOrigin { | ||
id | ||
repositoryLocationName | ||
repositoryName | ||
} | ||
...RunActionsMenuRunFragment | ||
} | ||
... on PartitionBackfill { | ||
backfillStatus: status | ||
partitionSetName | ||
partitionSet { | ||
id | ||
...PartitionSetForBackfillTableFragment | ||
} | ||
assetSelection { | ||
path | ||
} | ||
hasCancelPermission | ||
hasResumePermission | ||
isAssetBackfill | ||
numCancelable | ||
...BackfillStepStatusDialogBackfillFragment | ||
} | ||
} | ||
${RUN_ACTIONS_MENU_RUN_FRAGMENT} | ||
${PARTITION_SET_FOR_BACKFILL_TABLE_FRAGMENT} | ||
${BACKFILL_STEP_STATUS_DIALOG_BACKFILL_FRAGMENT} | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters