Created
May 13, 2020 06:26
-
-
Save ryanclark/b369d633674b86bf57e789afbe2ad571 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
export function BuildItem(props: BuildItemProps) { | |
const build = useFragment<BuildItem_build$key>( | |
graphql` | |
fragment BuildItem_build on Build { | |
id | |
buildNumber | |
commitEmail | |
commitSHA | |
commitUsername | |
finished | |
jobName | |
isRetry | |
started | |
status | |
timestamp | |
pipeline { | |
displayName | |
} | |
...BuildStatus_status | |
} | |
`, | |
props.build | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment