00209f7e2c
Closes https://github.com/twentyhq/core-team-issues/issues/2215 Closes https://github.com/twentyhq/core-team-issues/issues/2216 Closes https://github.com/twentyhq/core-team-issues/issues/2218 ## Fields widget edition demo https://github.com/user-attachments/assets/08626d70-8fcb-4ae2-9222-10ef57e75f90 ## Dashboards still work https://github.com/user-attachments/assets/aa9a9c45-a0a2-481e-b132-bc52254778da
25 lines
620 B
TypeScript
25 lines
620 B
TypeScript
import { PAGE_LAYOUT_TAB_FRAGMENT } from '@/dashboards/graphql/fragments/pageLayoutTabFragment';
|
|
import { gql } from '@apollo/client';
|
|
|
|
export const UPDATE_PAGE_LAYOUT_WITH_TABS_AND_WIDGETS = gql`
|
|
${PAGE_LAYOUT_TAB_FRAGMENT}
|
|
mutation UpdatePageLayoutWithTabsAndWidgets(
|
|
$id: String!
|
|
$input: UpdatePageLayoutWithTabsInput!
|
|
) {
|
|
updatePageLayoutWithTabsAndWidgets(id: $id, input: $input) {
|
|
id
|
|
name
|
|
type
|
|
objectMetadataId
|
|
defaultTabToFocusOnMobileAndSidePanelId
|
|
createdAt
|
|
updatedAt
|
|
deletedAt
|
|
tabs {
|
|
...PageLayoutTabFragment
|
|
}
|
|
}
|
|
}
|
|
`;
|