94b8e34362
closes https://discord.com/channels/1130383047699738754/1491549365263667230/1491804729397743666
12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
import { VIEW_FRAGMENT } from '@/views/graphql/fragments/viewFragment';
|
|
import { gql } from '@apollo/client';
|
|
|
|
export const FIND_TABLE_WIDGET_VIEWS = gql`
|
|
${VIEW_FRAGMENT}
|
|
query FindTableWidgetViews($viewTypes: [ViewType!]) {
|
|
getViews(viewTypes: $viewTypes) {
|
|
...ViewFragment
|
|
}
|
|
}
|
|
`;
|