diff --git a/twenty-frontend/src/js/types/schema.ts b/twenty-frontend/src/js/types/schema.ts index 9e92641..7b03b61 100644 --- a/twenty-frontend/src/js/types/schema.ts +++ b/twenty-frontend/src/js/types/schema.ts @@ -87,22 +87,18 @@ export type QueryFindTaskArgs = { }; -export type QueryTasksArgs = { - status: TaskStatus; -}; - export type QueryTasksArgs = { status: TaskStatus; }; export type Task = { - __typename?: "Task"; - content: Scalars["String"]["output"]; - id: Scalars["Int"]["output"]; - inProgress: Scalars["Boolean"]["output"]; - isBacklogged: Scalars["Boolean"]["output"]; - isComplete: Scalars["Boolean"]["output"]; - isReady: Scalars["Boolean"]["output"]; + __typename?: 'Task'; + content: Scalars['String']['output']; + id: Scalars['Int']['output']; + inProgress: Scalars['Boolean']['output']; + isBacklogged: Scalars['Boolean']['output']; + isComplete: Scalars['Boolean']['output']; + isReady: Scalars['Boolean']['output']; project: Project; status: TaskStatus; title: Scalars['String']['output']; @@ -110,17 +106,17 @@ export type Task = { }; export type TaskInput = { - content?: InputMaybe; - projectId?: InputMaybe; + content?: InputMaybe; + projectId?: InputMaybe; status?: InputMaybe; - title?: InputMaybe; + title?: InputMaybe; }; export enum TaskStatus { - Backlog = "backlog", - Complete = "complete", - InProgress = "in_progress", - Ready = "ready", + Backlog = 'backlog', + Complete = 'complete', + InProgress = 'in_progress', + Ready = 'ready' } /** Autogenerated return type of UpdateTask. */