Files
twenty/front/src/modules/views/graphql/mutations/createViews.ts
2023-08-15 12:08:02 -07:00

10 lines
188 B
TypeScript

import { gql } from '@apollo/client';
export const CREATE_VIEWS = gql`
mutation CreateViews($data: [ViewCreateManyInput!]!) {
createManyView(data: $data) {
count
}
}
`;