|
|
|
@@ -881,6 +881,11 @@ export type DeleteTwoFactorAuthenticationMethodOutput = {
|
|
|
|
|
success: Scalars['Boolean'];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type DeleteViewFieldInput = {
|
|
|
|
|
/** The id of the view field to delete. */
|
|
|
|
|
id: Scalars['UUID'];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type DeleteWebhookDto = {
|
|
|
|
|
id: Scalars['UUID'];
|
|
|
|
|
};
|
|
|
|
@@ -901,6 +906,11 @@ export type DeletedWorkspaceMember = {
|
|
|
|
|
userWorkspaceId?: Maybe<Scalars['UUID']>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type DestroyViewFieldInput = {
|
|
|
|
|
/** The id of the view field to destroy. */
|
|
|
|
|
id: Scalars['UUID'];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** Schema update on a table */
|
|
|
|
|
export enum DistantTableUpdate {
|
|
|
|
|
COLUMNS_ADDED = 'COLUMNS_ADDED',
|
|
|
|
@@ -1402,7 +1412,7 @@ export type Mutation = {
|
|
|
|
|
deactivateWorkflowVersion: Scalars['Boolean'];
|
|
|
|
|
deleteApprovedAccessDomain: Scalars['Boolean'];
|
|
|
|
|
deleteCoreView: Scalars['Boolean'];
|
|
|
|
|
deleteCoreViewField: Scalars['Boolean'];
|
|
|
|
|
deleteCoreViewField: CoreViewField;
|
|
|
|
|
deleteCoreViewFilter: Scalars['Boolean'];
|
|
|
|
|
deleteCoreViewFilterGroup: Scalars['Boolean'];
|
|
|
|
|
deleteCoreViewGroup: Scalars['Boolean'];
|
|
|
|
@@ -1427,7 +1437,7 @@ export type Mutation = {
|
|
|
|
|
deleteWorkflowVersionStep: WorkflowVersionStepChanges;
|
|
|
|
|
deleteWorkspaceInvitation: Scalars['String'];
|
|
|
|
|
destroyCoreView: Scalars['Boolean'];
|
|
|
|
|
destroyCoreViewField: Scalars['Boolean'];
|
|
|
|
|
destroyCoreViewField: CoreViewField;
|
|
|
|
|
destroyCoreViewFilter: Scalars['Boolean'];
|
|
|
|
|
destroyCoreViewFilterGroup: Scalars['Boolean'];
|
|
|
|
|
destroyCoreViewGroup: Scalars['Boolean'];
|
|
|
|
@@ -1713,7 +1723,7 @@ export type MutationDeleteCoreViewArgs = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type MutationDeleteCoreViewFieldArgs = {
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
|
input: DeleteViewFieldInput;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -1828,7 +1838,7 @@ export type MutationDestroyCoreViewArgs = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type MutationDestroyCoreViewFieldArgs = {
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
|
input: DestroyViewFieldInput;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -2079,7 +2089,6 @@ export type MutationUpdateCoreViewArgs = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type MutationUpdateCoreViewFieldArgs = {
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
|
input: UpdateViewFieldInput;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -3442,6 +3451,13 @@ export type UpdateServerlessFunctionInput = {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type UpdateViewFieldInput = {
|
|
|
|
|
/** The id of the view field to update */
|
|
|
|
|
id: Scalars['UUID'];
|
|
|
|
|
/** The view field to update */
|
|
|
|
|
update: UpdateViewFieldInputUpdates;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type UpdateViewFieldInputUpdates = {
|
|
|
|
|
aggregateOperation?: InputMaybe<AggregateOperations>;
|
|
|
|
|
isVisible?: InputMaybe<Scalars['Boolean']>;
|
|
|
|
|
position?: InputMaybe<Scalars['Float']>;
|
|
|
|
@@ -3923,13 +3939,13 @@ export type OnDbEventSubscriptionVariables = Exact<{
|
|
|
|
|
|
|
|
|
|
export type OnDbEventSubscription = { __typename?: 'Subscription', onDbEvent: { __typename?: 'OnDbEventDTO', eventDate: string, action: DatabaseEventAction, objectNameSingular: string, updatedFields?: Array<string> | null, record: any } };
|
|
|
|
|
|
|
|
|
|
export type ViewFieldFragmentFragment = { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null };
|
|
|
|
|
export type ViewFieldFragmentFragment = { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null };
|
|
|
|
|
|
|
|
|
|
export type ViewFilterFragmentFragment = { __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any };
|
|
|
|
|
|
|
|
|
|
export type ViewFilterGroupFragmentFragment = { __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any };
|
|
|
|
|
|
|
|
|
|
export type ViewFragmentFragment = { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> };
|
|
|
|
|
export type ViewFragmentFragment = { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> };
|
|
|
|
|
|
|
|
|
|
export type ViewGroupFragmentFragment = { __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any };
|
|
|
|
|
|
|
|
|
@@ -3940,14 +3956,14 @@ export type CreateCoreViewMutationVariables = Exact<{
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type CreateCoreViewMutation = { __typename?: 'Mutation', createCoreView: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> } };
|
|
|
|
|
export type CreateCoreViewMutation = { __typename?: 'Mutation', createCoreView: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> } };
|
|
|
|
|
|
|
|
|
|
export type CreateCoreViewFieldMutationVariables = Exact<{
|
|
|
|
|
input: CreateViewFieldInput;
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type CreateCoreViewFieldMutation = { __typename?: 'Mutation', createCoreViewField: { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null } };
|
|
|
|
|
export type CreateCoreViewFieldMutation = { __typename?: 'Mutation', createCoreViewField: { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null } };
|
|
|
|
|
|
|
|
|
|
export type CreateCoreViewFilterMutationVariables = Exact<{
|
|
|
|
|
input: CreateViewFilterInput;
|
|
|
|
@@ -3985,11 +4001,11 @@ export type DeleteCoreViewMutationVariables = Exact<{
|
|
|
|
|
export type DeleteCoreViewMutation = { __typename?: 'Mutation', deleteCoreView: boolean };
|
|
|
|
|
|
|
|
|
|
export type DeleteCoreViewFieldMutationVariables = Exact<{
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
|
input: DeleteViewFieldInput;
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type DeleteCoreViewFieldMutation = { __typename?: 'Mutation', deleteCoreViewField: boolean };
|
|
|
|
|
export type DeleteCoreViewFieldMutation = { __typename?: 'Mutation', deleteCoreViewField: { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null } };
|
|
|
|
|
|
|
|
|
|
export type DeleteCoreViewFilterMutationVariables = Exact<{
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
@@ -4027,11 +4043,11 @@ export type DestroyCoreViewMutationVariables = Exact<{
|
|
|
|
|
export type DestroyCoreViewMutation = { __typename?: 'Mutation', destroyCoreView: boolean };
|
|
|
|
|
|
|
|
|
|
export type DestroyCoreViewFieldMutationVariables = Exact<{
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
|
input: DestroyViewFieldInput;
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type DestroyCoreViewFieldMutation = { __typename?: 'Mutation', destroyCoreViewField: boolean };
|
|
|
|
|
export type DestroyCoreViewFieldMutation = { __typename?: 'Mutation', destroyCoreViewField: { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null } };
|
|
|
|
|
|
|
|
|
|
export type DestroyCoreViewFilterMutationVariables = Exact<{
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
@@ -4067,15 +4083,14 @@ export type UpdateCoreViewMutationVariables = Exact<{
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type UpdateCoreViewMutation = { __typename?: 'Mutation', updateCoreView: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> } };
|
|
|
|
|
export type UpdateCoreViewMutation = { __typename?: 'Mutation', updateCoreView: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> } };
|
|
|
|
|
|
|
|
|
|
export type UpdateCoreViewFieldMutationVariables = Exact<{
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
|
input: UpdateViewFieldInput;
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type UpdateCoreViewFieldMutation = { __typename?: 'Mutation', updateCoreViewField: { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null } };
|
|
|
|
|
export type UpdateCoreViewFieldMutation = { __typename?: 'Mutation', updateCoreViewField: { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null } };
|
|
|
|
|
|
|
|
|
|
export type UpdateCoreViewFilterMutationVariables = Exact<{
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
@@ -4114,7 +4129,7 @@ export type FindManyCoreViewFieldsQueryVariables = Exact<{
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type FindManyCoreViewFieldsQuery = { __typename?: 'Query', getCoreViewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null }> };
|
|
|
|
|
export type FindManyCoreViewFieldsQuery = { __typename?: 'Query', getCoreViewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }> };
|
|
|
|
|
|
|
|
|
|
export type FindManyCoreViewFilterGroupsQueryVariables = Exact<{
|
|
|
|
|
viewId?: InputMaybe<Scalars['String']>;
|
|
|
|
@@ -4149,21 +4164,21 @@ export type FindManyCoreViewsQueryVariables = Exact<{
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type FindManyCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> }> };
|
|
|
|
|
export type FindManyCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> }> };
|
|
|
|
|
|
|
|
|
|
export type FindOneCoreViewQueryVariables = Exact<{
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type FindOneCoreViewQuery = { __typename?: 'Query', getCoreView?: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> } | null };
|
|
|
|
|
export type FindOneCoreViewQuery = { __typename?: 'Query', getCoreView?: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, fieldMetadataId: any, isVisible: boolean, fieldValue: string, position: number, viewId: any }> } | null };
|
|
|
|
|
|
|
|
|
|
export type FindOneCoreViewFieldQueryVariables = Exact<{
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type FindOneCoreViewFieldQuery = { __typename?: 'Query', getCoreViewField?: { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null } | null };
|
|
|
|
|
export type FindOneCoreViewFieldQuery = { __typename?: 'Query', getCoreViewField?: { __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null } | null };
|
|
|
|
|
|
|
|
|
|
export type FindOneCoreViewFilterQueryVariables = Exact<{
|
|
|
|
|
id: Scalars['String'];
|
|
|
|
@@ -4202,6 +4217,9 @@ export const ViewFieldFragmentFragmentDoc = gql`
|
|
|
|
|
position
|
|
|
|
|
size
|
|
|
|
|
aggregateOperation
|
|
|
|
|
createdAt
|
|
|
|
|
updatedAt
|
|
|
|
|
deletedAt
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
export const ViewFilterFragmentFragmentDoc = gql`
|
|
|
|
@@ -4603,10 +4621,12 @@ export type DeleteCoreViewMutationHookResult = ReturnType<typeof useDeleteCoreVi
|
|
|
|
|
export type DeleteCoreViewMutationResult = Apollo.MutationResult<DeleteCoreViewMutation>;
|
|
|
|
|
export type DeleteCoreViewMutationOptions = Apollo.BaseMutationOptions<DeleteCoreViewMutation, DeleteCoreViewMutationVariables>;
|
|
|
|
|
export const DeleteCoreViewFieldDocument = gql`
|
|
|
|
|
mutation DeleteCoreViewField($id: String!) {
|
|
|
|
|
deleteCoreViewField(id: $id)
|
|
|
|
|
mutation DeleteCoreViewField($input: DeleteViewFieldInput!) {
|
|
|
|
|
deleteCoreViewField(input: $input) {
|
|
|
|
|
...ViewFieldFragment
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
${ViewFieldFragmentFragmentDoc}`;
|
|
|
|
|
export type DeleteCoreViewFieldMutationFn = Apollo.MutationFunction<DeleteCoreViewFieldMutation, DeleteCoreViewFieldMutationVariables>;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@@ -4622,7 +4642,7 @@ export type DeleteCoreViewFieldMutationFn = Apollo.MutationFunction<DeleteCoreVi
|
|
|
|
|
* @example
|
|
|
|
|
* const [deleteCoreViewFieldMutation, { data, loading, error }] = useDeleteCoreViewFieldMutation({
|
|
|
|
|
* variables: {
|
|
|
|
|
* id: // value for 'id'
|
|
|
|
|
* input: // value for 'input'
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
@@ -4789,10 +4809,12 @@ export type DestroyCoreViewMutationHookResult = ReturnType<typeof useDestroyCore
|
|
|
|
|
export type DestroyCoreViewMutationResult = Apollo.MutationResult<DestroyCoreViewMutation>;
|
|
|
|
|
export type DestroyCoreViewMutationOptions = Apollo.BaseMutationOptions<DestroyCoreViewMutation, DestroyCoreViewMutationVariables>;
|
|
|
|
|
export const DestroyCoreViewFieldDocument = gql`
|
|
|
|
|
mutation DestroyCoreViewField($id: String!) {
|
|
|
|
|
destroyCoreViewField(id: $id)
|
|
|
|
|
mutation DestroyCoreViewField($input: DestroyViewFieldInput!) {
|
|
|
|
|
destroyCoreViewField(input: $input) {
|
|
|
|
|
...ViewFieldFragment
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
${ViewFieldFragmentFragmentDoc}`;
|
|
|
|
|
export type DestroyCoreViewFieldMutationFn = Apollo.MutationFunction<DestroyCoreViewFieldMutation, DestroyCoreViewFieldMutationVariables>;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@@ -4808,7 +4830,7 @@ export type DestroyCoreViewFieldMutationFn = Apollo.MutationFunction<DestroyCore
|
|
|
|
|
* @example
|
|
|
|
|
* const [destroyCoreViewFieldMutation, { data, loading, error }] = useDestroyCoreViewFieldMutation({
|
|
|
|
|
* variables: {
|
|
|
|
|
* id: // value for 'id'
|
|
|
|
|
* input: // value for 'input'
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
@@ -4978,8 +5000,8 @@ export type UpdateCoreViewMutationHookResult = ReturnType<typeof useUpdateCoreVi
|
|
|
|
|
export type UpdateCoreViewMutationResult = Apollo.MutationResult<UpdateCoreViewMutation>;
|
|
|
|
|
export type UpdateCoreViewMutationOptions = Apollo.BaseMutationOptions<UpdateCoreViewMutation, UpdateCoreViewMutationVariables>;
|
|
|
|
|
export const UpdateCoreViewFieldDocument = gql`
|
|
|
|
|
mutation UpdateCoreViewField($id: String!, $input: UpdateViewFieldInput!) {
|
|
|
|
|
updateCoreViewField(id: $id, input: $input) {
|
|
|
|
|
mutation UpdateCoreViewField($input: UpdateViewFieldInput!) {
|
|
|
|
|
updateCoreViewField(input: $input) {
|
|
|
|
|
...ViewFieldFragment
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@@ -4999,7 +5021,6 @@ export type UpdateCoreViewFieldMutationFn = Apollo.MutationFunction<UpdateCoreVi
|
|
|
|
|
* @example
|
|
|
|
|
* const [updateCoreViewFieldMutation, { data, loading, error }] = useUpdateCoreViewFieldMutation({
|
|
|
|
|
* variables: {
|
|
|
|
|
* id: // value for 'id'
|
|
|
|
|
* input: // value for 'input'
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|