feat: add updateFlow mutation
This commit is contained in:
@@ -21,7 +21,7 @@ function AppFlowRow(props: AppFlowRowProps) {
|
||||
<CardActionArea component={Link} to={URLS.FLOW('dummy')}>
|
||||
<CardContent>
|
||||
<Box>
|
||||
<Typography variant="h6">
|
||||
<Typography variant="h6" noWrap>
|
||||
{flow.name}
|
||||
</Typography>
|
||||
</Box>
|
||||
|
@@ -12,6 +12,7 @@ export const CardContent = styled(MuiCardContent)(({ theme }) => ({
|
||||
|
||||
|
||||
export const Typography = styled(MuiTypography)(({ theme }) => ({
|
||||
textAlign: 'center',
|
||||
display: 'inline-block',
|
||||
width: 300,
|
||||
maxWidth: '50%',
|
||||
}));
|
||||
|
@@ -8,6 +8,7 @@ export const GET_APP = gql`
|
||||
iconUrl
|
||||
docUrl
|
||||
primaryColor
|
||||
connectionCount
|
||||
fields {
|
||||
key
|
||||
label
|
||||
@@ -48,6 +49,11 @@ export const GET_APP = gql`
|
||||
connections {
|
||||
id
|
||||
}
|
||||
triggers {
|
||||
name
|
||||
key
|
||||
description
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
Reference in New Issue
Block a user