3807d62aeb
* feat: persist resized column widths Closes #981 * test: mock company and person view fields
17 lines
338 B
TypeScript
17 lines
338 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const GET_VIEW_FIELDS = gql`
|
|
query GetViewFields(
|
|
$where: ViewFieldWhereInput
|
|
$orderBy: [ViewFieldOrderByWithRelationInput!]
|
|
) {
|
|
viewFields: findManyViewField(where: $where, orderBy: $orderBy) {
|
|
id
|
|
fieldName
|
|
isVisible
|
|
sizeInPx
|
|
index
|
|
}
|
|
}
|
|
`;
|