3807d62aeb
* feat: persist resized column widths Closes #981 * test: mock company and person view fields
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const CREATE_VIEW_FIELDS = gql`
|
|
mutation CreateViewFields($data: [ViewFieldCreateManyInput!]!) {
|
|
createManyViewField(data: $data) {
|
|
count
|
|
}
|
|
}
|
|
`;
|