Skip to content

Instantly share code, notes, and snippets.

@ryanclark
Created May 13, 2020 06:26
Show Gist options
  • Save ryanclark/b369d633674b86bf57e789afbe2ad571 to your computer and use it in GitHub Desktop.
Save ryanclark/b369d633674b86bf57e789afbe2ad571 to your computer and use it in GitHub Desktop.
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