{"data":{"__schema":{"queryType":{"name":"Query","kind":"OBJECT"},"mutationType":{"name":"Mutation","kind":"OBJECT"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"Query","description":"Root query type for the Dependencies service","fields":[{"name":"audit_logs","description":"Retrieve audit logs for your Monday account. You can\n    filter logs by event types, user ID, IP address and start and end date.\n    \n    Here is an example audit log query:\n\n    query {\n      audit_logs(\n        user_id: \"1234567890\"\n        events: [\"login\", \"logout\"]\n        ip_address: \"123.123.123.123\"\n        start_time: \"2021-01-01T00:00:00Z\"\n        end_time: \"2021-01-01T23:59:59Z\"\n        limit: 100\n        page: 1\n      ) {\n        logs {\n          timestamp\n          event\n          ip_address\n          user {\n            id\n            name\n            email\n          }\n          activity_metadata\n        }\n        pagination {\n          page\n          page_size\n          has_more_pages\n          next_page_number\n        }\n      }\n    }\n\n    To get the list of all possible event types, you should use the audit_event_catalogue query like this:\n\n    query {\n      audit_event_catalogue {\n        name\n        description\n        metadata_details\n      }\n    }","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"user_id","description":"Filter logs by this user ID (which appears as an integer value). If you have an email\naddress, you can get the user ID by looking up the user's email address through the\nUsers API.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"events","description":"Filter logs by specific event types. Returns\n        logs that match any of the event types in the provided list.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"ip_address","description":"Filter logs that have this IP address","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"start_time","description":"Filter for logs from this date and time onwards. \n        Timestamps must be in ISO 8601 format and are in the UTC timezone.","type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"defaultValue":null},{"name":"end_time","description":"Filter for logs up to this date and time. \n        Timestamps must be in ISO 8601 format and are in the UTC timezone.","type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AuditLogPage","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"audit_event_catalogue","description":"Lists all the audit event types that can be logged and information about them.\n    \n    Example query:\n\n    query {\n      audit_event_catalogue {\n        name\n        description\n        metadata_details\n      }\n    }","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditEventCatalogueEntry","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"connections","description":"Returns connections for the authenticated user. Supports filtering, pagination, ordering, and partial-scope options.","args":[{"name":"withAutomations","description":"Include connections that have automations attached.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"connectionState","description":"Filter connections by their state (e.g., active, inactive).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"withStateValidation","description":"Validate connection state before returning the result.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"page","description":"Page index for offset-based pagination (starting from 1).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pageSize","description":"Number of records to return per page when using offset-based pagination.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order","description":"Ordering of returned connections (e.g., \"createdAt\", \"-createdAt\").","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"withPartialScopes","description":"Include connections created with partial scopes.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"pagination","description":"Cursor-based pagination parameters: specify \"limit\" and optionally \"lastId\".","type":{"kind":"INPUT_OBJECT","name":"PaginationInput","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Connection","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"user_connections","description":"Returns connections that belong to the authenticated user.","args":[{"name":"withAutomations","description":"Include connections that have automations attached.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withStateValidation","description":"Validate connection state before returning the result.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"page","description":"Page index for offset-based pagination (starting from 1).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pageSize","description":"Number of records to return per page when using offset-based pagination.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order","description":"Ordering of returned connections (e.g., \"createdAt\", \"-createdAt\").","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pagination","description":"Cursor-based pagination parameters: specify \"limit\" and optionally \"lastId\".","type":{"kind":"INPUT_OBJECT","name":"PaginationInput","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Connection","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"account_connections","description":"Returns all connections for the account. Requires admin privileges.","args":[{"name":"withAutomations","description":"Include connections that have automations attached.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"withStateValidation","description":"Validate connection state before returning the result.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"page","description":"Page index for offset-based pagination (starting from 1).","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"pageSize","description":"Number of records to return per page when using offset-based pagination.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order","description":"Ordering of returned connections (e.g., \"createdAt\", \"-createdAt\").","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pagination","description":"Cursor-based pagination parameters: specify \"limit\" and optionally \"lastId\".","type":{"kind":"INPUT_OBJECT","name":"PaginationInput","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Connection","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"connection","description":"Fetch a single connection by its unique ID.","args":[{"name":"id","description":"Unique identifier of the connection.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Connection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"connection_board_ids","description":"Get board IDs that are linked to a specific connection.","args":[{"name":"connectionId","description":"Unique identifier of the connection.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"trigger_events","description":"List trigger events with optional filters","args":[{"name":"nextPageOffset","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"},{"name":"filters","description":null,"type":{"kind":"INPUT_OBJECT","name":"TriggerEventsFiltersInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TriggerEventsPage","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"trigger_event","description":"Fetch a single trigger event by UUID","args":[{"name":"triggerUuid","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TriggerEvent","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"block_events","description":"List block events for a given trigger UUID","args":[{"name":"triggerUuid","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"nextPageOffset","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"0"}],"type":{"kind":"OBJECT","name":"BlockEventsPage","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"account_trigger_statistics","description":"Get aggregated automation runs statistics in the account","args":[{"name":"filters","description":null,"type":{"kind":"INPUT_OBJECT","name":"AccountTriggerStatisticsFiltersInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AccountTriggerStatistics","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"account_triggers_statistics_by_entity_id","description":"Get aggregated automation runs statistics grouped by entity Ids","args":[{"name":"run_status","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"TriggerEventState","ofType":null}},"defaultValue":null},{"name":"filters","description":null,"type":{"kind":"INPUT_OBJECT","name":"AccountTriggersByEntityIdFiltersInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AccountTriggersByEntityId","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"empty","description":"Placeholder query field for automations-test microservice.\nThis can be replaced with actual queries as the service evolves.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"get_view_schema_by_type","description":"Retrieves the JSON schema definition for a specific create view type. \n      Use this query before calling create_view mutation to understand the structure and validation rules for the settings parameter. \n      The schema defines what properties are available when creating views of a specific type.","args":[{"name":"type","description":"Specifies which view type to retrieve the schema for. Valid values include\n           \"DASHBOARD\", \"TABLE\", \"FORM\", \"APP\", etc. Each type has different available properties and validation rules.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ViewKind","ofType":null}},"defaultValue":null},{"name":"mutationType","description":"Specifies the type of mutation to retrieve the schema for. Valid values include\n           \"create\" or \"update\".","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ViewMutationKind","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updates","description":null,"args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"ids","description":"A list of updates unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"from_date","description":"Filter updates created from this date (inclusive). ISO 8601 format (e.g., YYYY-MM-DD or YYYY-MM-DDTHH:mm).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"to_date","description":"Filter updates created up to this date (inclusive). ISO 8601 format (e.g., YYYY-MM-DD or YYYY-MM-DDTHH:mm).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Update","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"replies","description":"Get a collection of replies filtered by board IDs and date range.","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"board_ids","description":"A list of board IDs to filter replies by.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"created_at_from","description":"Filter replies created from this date (inclusive). ISO 8601 format (e.g., YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"created_at_to","description":"Filter replies created up to this date (inclusive). ISO 8601 format (e.g., YYYY-MM-DD or YYYY-MM-DDTHH:mm:ss).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reply","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"custom_activity","description":null,"args":[{"name":"ids","description":"The ids of the custom activities to fetch","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"name","description":"The name of the custom activity, case insensitive and partial match","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"icon_id","description":"The icon of the custom activity","type":{"kind":"ENUM","name":"CustomActivityIcon","ofType":null},"defaultValue":null},{"name":"color","description":"The color of the custom activity","type":{"kind":"ENUM","name":"CustomActivityColor","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CustomActivity","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"timeline_item","description":null,"args":[{"name":"id","description":"The id of the timeline item to delete","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TimelineItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timeline","description":"Fetches timeline items for a given item","args":[{"name":"id","description":"The id of the item","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"skipConnectedItems","description":"Whether to skip connected items","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TimelineResponse","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"managed_column","description":"Get managed column data.","args":[{"name":"id","description":"The managed column ids.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"state","description":"The state of the managed column.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ManagedColumnState","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ManagedColumn","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"get_column_type_schema","description":"Retrieves the JSON schema definition for a specific column type. Use this query before calling update_column mutation to understand the structure and validation rules for the defaults parameter. The schema defines what properties are available when updating columns of a specific type.","args":[{"name":"type","description":"Specifies which column type to retrieve the schema for. Valid values include \"text\", \"status\", \"date\", \"numbers\", etc. Each type has different available properties and validation rules.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"validations","description":"Get validations configuration for a board","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"type","description":"The type of entity for validations the default is board","type":{"kind":"ENUM","name":"ValidationsEntityType","ofType":null},"defaultValue":"board"}],"type":{"kind":"OBJECT","name":"Validations","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"export_graph","description":"Export the dependency graph for a specific board","args":[{"name":"boardId","description":"The ID of the board to export the graph for","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BoardGraphExport","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dependency_column_config","description":"Fetch dependency column configuration for a board","args":[{"name":"board_id","description":"The ID of the board to fetch dependency columns from","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"account_id","description":"The account ID (needed for authentication)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"user_id","description":"The user ID (needed for authentication)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DependencyColumnConfigResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"export_events","description":"Export events with optional filters and pagination","args":[{"name":"board_id","description":"Filter events by board ID","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"state","description":"Filter events by state(s)","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"type","description":"Filter events by type(s)","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"start_date","description":"Filter events created after this date (ISO format)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"end_date","description":"Filter events created before this date (ISO format)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":"Maximum number of events to return (default: 100, max: 1000)","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"Number of events to skip for pagination","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"Field to order by (default: createdAt)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"order_direction","description":"Order direction: ASC or DESC (default: DESC)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EventsExport","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"export_markdown_from_doc","description":"Converts document content into standard markdown format for external use, backup, or processing. Exports the entire document by default, or specific blocks if block IDs are provided. Use this to extract content for integration with other systems, create backups, generate reports, or process document content with external tools. The output is clean, portable markdown that preserves formatting and structure.","args":[{"name":"docId","description":"The document's unique identifier to export. Get this from document queries or creation responses.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"blockIds","description":"Optional array of specific block IDs to export. If omitted, exports the entire document. Use when you only need specific sections.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportMarkdownResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"favorites","description":"Get all personal list items by list ID","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GraphqlHierarchyObjectItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"marketplace_app_discounts","description":null,"args":[{"name":"app_id","description":"The id of an app","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceAppDiscount","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"app_subscriptions","description":null,"args":[{"name":"app_id","description":"The ID of an app","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"status","description":null,"type":{"kind":"ENUM","name":"SubscriptionStatus","ofType":null},"defaultValue":null},{"name":"account_id","description":"The ID of an account","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"cursor","description":"The value, which identifies the exact point to continue fetching the subscriptions from","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":"The size of the requested page","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AppSubscriptions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"marketplace_vector_search","description":"Search for marketplace apps using vector similarity","args":[{"name":"input","description":"The input for the marketplace search, including the search query, limit, and offset","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"MarketplaceSearchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceSearchResults","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"marketplace_fulltext_search","description":"Search for marketplace apps using full-text search","args":[{"name":"input","description":"The input for the marketplace search, including the search query, limit, and offset","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"MarketplaceSearchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceSearchResults","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"marketplace_hybrid_search","description":"Search for marketplace apps using a combination of vector and full-text search","args":[{"name":"input","description":"The input for the marketplace search, including the search query, limit, and offset","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"MarketplaceSearchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceSearchResults","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"marketplace_ai_search","description":"Search for marketplace apps using AI","args":[{"name":"input","description":"The input for the marketplace search, including the search query, limit, and offset","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"MarketplaceAiSearchInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceAiSearchResults","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"app","description":"Get an app by ID or slug.","args":[{"name":"id","description":"The ID or slug of the app","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AppType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"account","description":"Get the connected account's information.","args":[],"type":{"kind":"OBJECT","name":"Account","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"app_installs","description":"Get a collection of installs of an app.","args":[{"name":"account_id","description":"The id of an account to filter app installs by.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"app_id","description":"The id of an application.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"limit","description":"Number of items to get, the default is 25. Max: 100","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AppInstall","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"app_subscription","description":"Get the current app subscription. Note: This query does not work in the playground","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AppSubscription","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"app_subscription_operations","description":"Get operations counter current value","args":[{"name":"kind","description":"Operation name. A string of up to 14 characters containing alphanumeric characters and the symbols -_ ","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"global\""}],"type":{"kind":"OBJECT","name":"AppSubscriptionOperationsCounter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"apps_monetization_info","description":"Get apps monetization information for an account","args":[],"type":{"kind":"OBJECT","name":"AppsMonetizationInfo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"apps_monetization_status","description":"Get apps monetization status for an account","args":[],"type":{"kind":"OBJECT","name":"AppMonetizationStatus","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"assets","description":"Get a collection of assets by ids.","args":[{"name":"ids","description":"Ids of the assets/files you want to get","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Asset","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"boards","description":"Get a collection of boards.","args":[{"name":"board_kind","description":"The board's kind (public / private / share)","type":{"kind":"ENUM","name":"BoardKind","ofType":null},"defaultValue":null},{"name":"hierarchy_types","description":"A list of hierarchy types","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardHierarchy","ofType":null}}},"defaultValue":null},{"name":"ids","description":"A list of boards unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"latest","description":"Boolean that brings the latest data","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"order_by","description":"Property to order by (created_at / used_at).","type":{"kind":"ENUM","name":"BoardsOrderBy","ofType":null},"defaultValue":null},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"state","description":"The state of the board (all / active / archived / deleted), the default is active.","type":{"kind":"ENUM","name":"State","ofType":null},"defaultValue":"active"},{"name":"workspace_ids","description":"A list of workspace ids the boards are contained in.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Board","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"complexity","description":"Get the complexity data of your queries.","args":[],"type":{"kind":"OBJECT","name":"Complexity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"docs","description":"Get a collection of docs.","args":[{"name":"ids","description":"A list of document unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"object_ids","description":"A list of associated board or object’s unique identifier.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"order_by","description":"Property to order by (created_at / used_at).","type":{"kind":"ENUM","name":"DocsOrderBy","ofType":null},"defaultValue":null},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"workspace_ids","description":"A list of workspace ids the documents are contained in.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Document","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"folders","description":"Get a collection of folders. Note: This query won't return folders from closed workspaces to which you are not subscribed","args":[{"name":"ids","description":"A list of folders unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"workspace_ids","description":"A list of workspace unique identifiers to filter folders by workspaces. (pass null to include Main Workspace)","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Folder","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"Get a collection of items.","args":[{"name":"exclude_nonactive","description":"Excludes items that are inactive, deleted or belong to deleted items","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"ids","description":"A list of items unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"newest_first","description":"Get the recently created items at the top of the list","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Item","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"items_page_by_column_values","description":"Search items by multiple columns and values.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"columns","description":"One or more columns, and their values to search items by.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsPageByColumnValuesQuery","ofType":null}}},"defaultValue":null},{"name":"cursor","description":"An opaque token representing the position in the result set from which to\nresume fetching items. Use this to paginate through large result sets.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"hierarchy_scope_config","description":"The hierarchy config to use for the query filters.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":"The maximum number of items to fetch in a single request. Use this to\ncontrol the size of the result set and manage pagination. Maximum: 500.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":"25"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemsResponse","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"me","description":"Get the connected user's information.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next_items_page","description":"Get next pages of board's items (rows) by cursor.","args":[{"name":"cursor","description":"An opaque token representing the position in the result set from which to\nresume fetching items. Use this to paginate through large result sets.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"limit","description":"The maximum number of items to fetch in a single request. Use this to\ncontrol the size of the result set and manage pagination. Maximum: 500.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":"25"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemsResponse","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"Get a collection of tags.","args":[{"name":"ids","description":"A list of tags unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Tag","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"teams","description":"Get a collection of teams.","args":[{"name":"ids","description":"A list of teams unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"users","description":"Get a collection of users.","args":[{"name":"emails","description":"A list of users' emails.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"ids","description":"A list of users' unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"kind","description":"The kind to search users by (all / non_guests / guests / non_pending).","type":{"kind":"ENUM","name":"UserKind","ofType":null},"defaultValue":null},{"name":"limit","description":"Number of users to get.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"name","description":"Allows to fuzzy search by name","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"newest_first","description":"Get the recently created users at the top of the list","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"non_active","description":"Return non active users in the account.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"webhooks","description":"Get a collection of webhooks for the board","args":[{"name":"app_webhooks_only","description":"Filters webhooks that were created by the app initiating the request","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"board_id","description":"Board unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Webhook","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"workspaces","description":"Get a collection of workspaces.","args":[{"name":"ids","description":"A list of workspace unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"kind","description":"The workspace's kind (open / closed / template)","type":{"kind":"ENUM","name":"WorkspaceKind","ofType":null},"defaultValue":null},{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"membership_kind","description":"The workspace's membership kind (member / all)","type":{"kind":"ENUM","name":"WorkspaceMembershipKind","ofType":null},"defaultValue":"all"},{"name":"order_by","description":"Property to order by (created_at).","type":{"kind":"ENUM","name":"WorkspacesOrderBy","ofType":null},"defaultValue":null},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"state","description":"The state of the workspace (all / active / archived / deleted), the default is active.","type":{"kind":"ENUM","name":"State","ofType":null},"defaultValue":"active"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Workspace","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"board_candidates","description":"Get board candidates based on workspace and usage type","args":[{"name":"workspaceId","description":"The workspace ID to get boards from","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"usageType","description":"The usage type for filtering boards","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardUsage","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Board","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"notifications","description":null,"args":[{"name":"cursor","description":"The last notification id to get.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"filter_read","description":"Whether to get only unread notifications.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"since","description":"Filter notifications created from this date (inclusive). ISO 8601 format (e.g., YYYY-MM-DD or YYYY-MM-DDTHH:mm).","type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NotificationV2","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"notifications_settings","description":"Retrieves the current user's notification settings across all available channels.","args":[{"name":"scope_type","description":"notification settings scope types. Options: account user defaults or user private settings.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ScopeType","ofType":null}},"defaultValue":null},{"name":"scope_id","description":"Relevant when using scopeType: user. The userId of the user whose notification settings you want to retrieve. By default, the current user is used.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"setting_kinds","description":"Filter results to specific notification setting types by their names. Leave empty to retrieve all settings.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"channels","description":"Return results for a specific notification channel type","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ChannelType","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NotificationSetting","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"mute_board_settings","description":"Get mute board notification settings for the current user","args":[{"name":"board_ids","description":"The IDs of the boards to get mute settings for","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BoardMuteSettings","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"object_types_unique_keys","description":"Retrieves a list of available object types that can be created or queried. Each object type is uniquely identified by an 'object_type_unique_key'. This key is required for mutations like 'create_object' and for filtering in the 'objects' query. Use this query to discover what types of objects are available in the system (e.g., 'workflows', 'projects') and get their corresponding unique keys. The structure of unique key is 'app_slug::app_feature_slug'.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ObjectTypeUniqueKey","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"objects","description":"Retrieves a list of objects from the Monday.com Objects Platform based on specified filters. This query can return any type of object (board, doc, dashboard, workflow, etc.) depending on the filter criteria. Use object_type_unique_keys to filter for specific object types.","args":[{"name":"object_type_unique_keys","description":"The unique identifier for the object type, formatted as 'app_slug::app_feature_slug'","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"ids","description":"Filter by specific object ID(s). Use this when you need to retrieve one or more specific objects by their unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"limit","description":"Maximum number of objects to return in the response. Default is 25, but can be increased to retrieve more objects at once.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"order_by","description":"Specifies the order in which objects are returned.","type":{"kind":"ENUM","name":"OrderBy","ofType":null},"defaultValue":null},{"name":"state","description":"Filter objects by their state.","type":{"kind":"ENUM","name":"ObjectState","ofType":null},"defaultValue":null},{"name":"privacy_kind","description":"Filter objects by their kind/visibility setting.","type":{"kind":"ENUM","name":"PrivacyKind","ofType":null},"defaultValue":null},{"name":"workspace_ids","description":"Filter objects by workspace ID(s). Returns only objects that belong to the specified workspace(s). Use null or omit for objects in the main workspace.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Object","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"version","description":"Get the API version in use","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Version","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"versions","description":"Get a list containing the versions of the API","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Version","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"platform_api","description":"Platform API data.","args":[],"type":{"kind":"OBJECT","name":"PlatformApi","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"aggregate","description":"Performs aggregation operations on board data","args":[{"name":"query","description":"The aggregation query to execute","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AggregateQueryInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AggregateQueryResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"get_directory_resources","description":"Fetch resources information from the resource directory","args":[{"name":"query_params","description":"Query parameters for filtering resources","type":{"kind":"INPUT_OBJECT","name":"ItemsQuery","ofType":null},"defaultValue":null},{"name":"cursor","description":"The cursor which allows to fetch the next page of directory resources.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"}],"type":{"kind":"OBJECT","name":"DirectoryResourcesResponse","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sprints","description":"Get a collection of monday dev sprints","args":[{"name":"ids","description":"A list of monday dev sprints unique identifiers","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Sprint","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"account_roles","description":"Get all roles for the account","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AccountRole","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"all_widgets_schema","description":"Returns all available widget schemas for documentation and validation purposes","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"WidgetSchemaInfo","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"form","description":"Fetch a form by its token. The returned form includes all the details of the form such as its settings, questions, title, etc. Use this endpoint when you need to retrieve complete form data for display or processing. Requires that the requesting user has read access to the associated board.","args":[{"name":"formToken","description":"The unique identifier token for the form. This token is used to securely access the form and can be found in the form URL.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ResponseForm","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ID","description":"The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"The `Boolean` scalar type represents `true` or `false`.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"User","description":"A monday.com user.","fields":[{"name":"id","description":"The user's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"account","description":"The user's account.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Account","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"account_products","description":"The products the user is assigned to.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AccountProduct","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"birthday","description":"The user's birthday.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"country_code","description":"The user's country code.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The user's creation date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"current_language","description":"The current user's language","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"custom_field_metas","description":"The custom field metas of the user profile.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CustomFieldMetas","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"custom_field_values","description":"The custom field values of the user profile.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"CustomFieldValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"The user's email.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabled","description":"Is the user enabled or not.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"encrypt_api_token","description":"The token of the user for email to board.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_admin","description":"Is the user an account admin.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_guest","description":"Is the user a guest or not.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_pending","description":"Is the user a pending user","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_verified","description":"Is user verified his email.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_view_only","description":"Is the user a view only user or not.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"join_date","description":"The date the user joined the account.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last_activity","description":"Last date & time when user was active","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The user's location.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mobile_phone","description":"The user's mobile phone number.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The user's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"out_of_office","description":"The user's out of office status.","args":[],"type":{"kind":"OBJECT","name":"OutOfOffice","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"phone","description":"The user's phone number.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"photo_original","description":"The user's photo in the original size.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"photo_small","description":"The user's photo in small size (150x150).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"photo_thumb","description":"The user's photo in thumbnail size (100x100).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"photo_thumb_small","description":"The user's photo in small thumbnail size (50x50).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"photo_tiny","description":"The user's photo in tiny size (30x30).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sign_up_product_kind","description":"The product to which the user signed up to first.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"teams","description":"The teams the user is a member in.","args":[{"name":"ids","description":"A list of teams unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"time_zone_identifier","description":"The user's timezone identifier.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The user's title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The user's profile url.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"utc_hours_diff","description":"The user’s utc hours difference.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":"Root mutation type for the Dependencies service","fields":[{"name":"execute_integration_block","description":"Execute an integration block with the provided field values","args":[{"name":"block_instance_id","description":"The ID of the integration block instance to execute","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"inbound_field_values","description":"The field values to pass to the integration block","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"IntegrationExecutionResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_view_table","description":"Create a new table view","args":[{"name":"board_id","description":"The ID of the board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":"The name of the view","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter_user_id","description":"User ID to filter by","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"filter_team_id","description":"Team ID to filter by","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"filter","description":"The rule filters to apply to the board view","type":{"kind":"INPUT_OBJECT","name":"ItemsQueryGroup","ofType":null},"defaultValue":null},{"name":"sort","description":"The sort order to apply to the board view","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsQueryOrderBy","ofType":null}}},"defaultValue":null},{"name":"tags","description":"Tags to apply for board view","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"settings","description":"View settings configuration for the table board view","type":{"kind":"INPUT_OBJECT","name":"TableViewSettingsInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BoardView","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_view","description":"Create a view","args":[{"name":"board_id","description":"The ID of the board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"type","description":"The type of view to create","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ViewKind","ofType":null}},"defaultValue":null},{"name":"name","description":"The name of the view","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter_user_id","description":"User ID to filter by","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"filter_team_id","description":"Team ID to filter by","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"filter","description":"The rule filters to apply to the board view","type":{"kind":"INPUT_OBJECT","name":"ItemsQueryGroup","ofType":null},"defaultValue":null},{"name":"sort","description":"The sort order to apply to the board view","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsQueryOrderBy","ofType":null}}},"defaultValue":null},{"name":"tags","description":"Tags to apply for board view","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"settings","description":"Type-specific configuration object containing view settings. \n        The structure varies by view type - \n        use get_view_schema_by_type query to see available properties. \n        Examples: APP view include app_feature_id part of it's settings","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BoardView","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_view_table","description":"Update an existing board table view","args":[{"name":"view_id","description":"The ID of the view to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"board_id","description":"The ID of the board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":"The name of the view","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter_user_id","description":"User ID to filter by","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"filter_team_id","description":"Team ID to filter by","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"filter","description":"The rule filters to apply to the board view","type":{"kind":"INPUT_OBJECT","name":"ItemsQueryGroup","ofType":null},"defaultValue":null},{"name":"sort","description":"The sort order to apply to the board view","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsQueryOrderBy","ofType":null}}},"defaultValue":null},{"name":"tags","description":"Tags to apply for board view","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"settings","description":"The settings for the view","type":{"kind":"INPUT_OBJECT","name":"TableViewSettingsInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BoardView","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_view","description":"Update an existing view","args":[{"name":"name","description":"The name of the view","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filter_user_id","description":"User ID to filter by","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"filter_team_id","description":"Team ID to filter by","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"filter","description":"The rule filters to apply to the board view","type":{"kind":"INPUT_OBJECT","name":"ItemsQueryGroup","ofType":null},"defaultValue":null},{"name":"sort","description":"The sort order to apply to the board view","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsQueryOrderBy","ofType":null}}},"defaultValue":null},{"name":"tags","description":"Tags to apply for board view","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"view_id","description":"The ID of the view to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"board_id","description":"The ID of the board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"type","description":"The type of view to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ViewKind","ofType":null}},"defaultValue":null},{"name":"settings","description":"Type-specific configuration object containing view settings. \n        The structure varies by view type - \n        use get_view_schema_by_type query to see available properties. \n        Examples: TABLE view include group_by and columns configuration as part of it's settings","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BoardView","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_view","description":"Delete an existing board subset/view","args":[{"name":"view_id","description":"The ID of the view to delete","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"board_id","description":"The ID of the board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BoardView","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"like_update","description":null,"args":[{"name":"update_id","description":"The update identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"reaction_type","description":"The reaction type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Update","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unlike_update","description":null,"args":[{"name":"update_id","description":"The update identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Update","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"delete_update","description":null,"args":[{"name":"id","description":"The update's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Update","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"edit_update","description":null,"args":[{"name":"id","description":"The update's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":"The update text.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Update","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pin_to_top","description":null,"args":[{"name":"id","description":"The update's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"item_id","description":"The item unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Update","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"unpin_from_top","description":null,"args":[{"name":"id","description":"The update's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"item_id","description":"The item unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Update","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"create_update","description":null,"args":[{"name":"body","description":"The update text. Do not use @ to mention users, use the mentions field instead (if available).","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"original_creation_date","description":"Original creation date of the update.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"mentions_list","description":"Mention users, teams, or boards in this update. Example: [{\"id\": \"123\", \"type\": \"User\"}, {\"id\": \"456\", \"type\": \"Board\"}]","type":{"kind":"LIST","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMention","ofType":null}},"defaultValue":null},{"name":"item_id","description":"The item's unique identifier on which the update will be created on. No need to set if you are using parent_id for replying to a post.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"parent_id","description":"The parent post identifier. Use this to reply to a post.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"use_app_info","description":"Use app info for the post creator.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Update","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_timeline_item","description":null,"args":[{"name":"item_id","description":"The item the timeline item will be created in.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"user_id","description":"The user who created the timeline item. Only for account admins.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"title","description":"The title of the timeline item.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"timestamp","description":"The creation time of the event.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"defaultValue":null},{"name":"summary","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"content","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"location","description":"Location field value","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"phone","description":"Phone number field value","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"url","description":"URL field value","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"time_range","description":"The start and end time of the new timeline item.","type":{"kind":"INPUT_OBJECT","name":"TimelineItemTimeRange","ofType":null},"defaultValue":null},{"name":"custom_activity_id","description":"The id of the custom activity of the timeline item.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TimelineItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_timeline_item","description":null,"args":[{"name":"id","description":"The id of the timeline item to delete","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TimelineItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_custom_activity","description":null,"args":[{"name":"name","description":"The name of the custom activity","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"icon_id","description":"The icon of the custom activity","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CustomActivityIcon","ofType":null}},"defaultValue":null},{"name":"color","description":"The color of the custom activity","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CustomActivityColor","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CustomActivity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_custom_activity","description":null,"args":[{"name":"id","description":"The id of the custom activity","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CustomActivity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_dropdown_managed_column","description":"Create managed column of type dropdown mutation.","args":[{"name":"title","description":"The column title.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":"The column description.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"settings","description":null,"type":{"kind":"INPUT_OBJECT","name":"CreateDropdownColumnSettingsInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DropdownManagedColumn","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_status_managed_column","description":"Create managed column of type status mutation.","args":[{"name":"title","description":"The column title.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":"The column description.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"settings","description":null,"type":{"kind":"INPUT_OBJECT","name":"CreateStatusColumnSettingsInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"StatusManagedColumn","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_dropdown_managed_column","description":"Update managed column of type dropdown mutation.","args":[{"name":"id","description":"The column id.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"The column title.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"The column description.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"settings","description":null,"type":{"kind":"INPUT_OBJECT","name":"UpdateDropdownColumnSettingsInput","ofType":null},"defaultValue":null},{"name":"revision","description":"The column revision.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DropdownManagedColumn","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_status_managed_column","description":"Update managed column of type status mutation.","args":[{"name":"id","description":"The column id.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"The column title.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"The column description.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"settings","description":null,"type":{"kind":"INPUT_OBJECT","name":"UpdateStatusColumnSettingsInput","ofType":null},"defaultValue":null},{"name":"revision","description":"The column revision.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"StatusManagedColumn","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"activate_managed_column","description":"Activate managed column mutation.","args":[{"name":"id","description":"The column id.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ManagedColumn","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deactivate_managed_column","description":"Deactivate managed column mutation.","args":[{"name":"id","description":"The column id.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ManagedColumn","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_managed_column","description":"Delete managed column mutation.","args":[{"name":"id","description":"The column id.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ManagedColumn","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_status_column","description":"Updates a status column's properties including title, description, and status label settings. Status columns allow users to track item progress through customizable labels (e.g., \"Working on it\", \"Done\", \"Stuck\"). This mutation is specifically for status/color columns and provides type-safe updates.","args":[{"name":"board_id","description":"The unique identifier of the board containing the column to update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"id","description":"The unique identifier of the column to update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"The new display title for the column. If not provided, the current title remains unchanged.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"The new description text for the column. If not provided, the current description remains unchanged.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"width","description":"The width of the column. If not provided, the current width remains unchanged.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"revision","description":"The revision of the column, as returned by the column query. Used for optimistic concurrency control.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"capabilities","description":"Status column capabilities configuration. If not provided, existing capabilities remain unchanged.","type":{"kind":"INPUT_OBJECT","name":"StatusColumnCapabilitiesInput","ofType":null},"defaultValue":null},{"name":"settings","description":"Configuration object for status column settings including available status labels, their colors, positions, and other display properties.","type":{"kind":"INPUT_OBJECT","name":"UpdateStatusColumnSettingsInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_dropdown_column","description":"Updates a dropdown column's properties including title, description, and dropdown label settings. Dropdown columns allow users to select from a predefined list of options. This mutation is specifically for dropdown columns and provides type-safe updates.","args":[{"name":"board_id","description":"The unique identifier of the board containing the column to update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"id","description":"The unique identifier of the column to update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"The new display title for the column. If not provided, the current title remains unchanged.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"The new description text for the column. If not provided, the current description remains unchanged.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"width","description":"The width of the column. If not provided, the current width remains unchanged.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"revision","description":"The revision of the column, as returned by the column query. Used for optimistic concurrency control.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"settings","description":"Configuration object for dropdown column settings including available dropdown labels, their positions, and other display properties.","type":{"kind":"INPUT_OBJECT","name":"UpdateDropdownColumnSettingsInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_column","description":"Generic mutation for updating any column type with validation. Supports updating column properties like title, description, and type-specific defaults/settings. The mutation validates input against the column type's schema before applying changes. Use get_column_type_schema query to understand available properties for each column type.","args":[{"name":"board_id","description":"The unique identifier of the board containing the column to update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"id","description":"The unique identifier of the column to update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"The new display title for the column. If not provided, the current title remains unchanged.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"The new description text for the column. If not provided, the current description remains unchanged.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"width","description":"The width of the column. If not provided, the current width remains unchanged.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"revision","description":"The revision of the column, as returned by the column query. Used for optimistic concurrency control.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"capabilities","description":"Column capabilities configuration. If not provided, existing capabilities remain unchanged.","type":{"kind":"INPUT_OBJECT","name":"ColumnCapabilitiesInput","ofType":null},"defaultValue":null},{"name":"settings","description":"Type-specific configuration object containing column settings. The structure varies by column type - use get_column_type_schema query to see available properties. Examples: status column labels, dropdown options, number formatting rules, date display preferences.","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"column_type","description":"The column type being updated (e.g., \"text\", \"status\", \"date\", \"numbers\"). Must match the existing column type. Determines which properties are valid in the defaults object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_column","description":"Deletes a column from a board. Cannot delete mandatory columns (e.g., name column).","args":[{"name":"board_id","description":"The unique identifier of the board containing the column to delete.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_id","description":"The unique identifier of the column to delete.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_status_column","description":"Creates a new status column with strongly typed settings. Status columns allow users to track item progress through customizable labels (e.g., \"Working on it\", \"Done\", \"Stuck\"). This mutation is specifically for status/color columns and provides type-safe creation with label configuration.","args":[{"name":"board_id","description":"The unique identifier of the board where the column will be created.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"id","description":"The unique identifier of the column. If not provided, a new id will be generated.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"title","description":"The display title for the column.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":"The description text for the column.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"after_column_id","description":"The column's unique identifier after which the new column will be inserted.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"capabilities","description":"Status column capabilities configuration. If not provided, default capabilities will be created.","type":{"kind":"INPUT_OBJECT","name":"StatusColumnCapabilitiesInput","ofType":null},"defaultValue":null},{"name":"defaults","description":"Configuration object for status column settings including available status labels, their colors, positions, and other display properties.","type":{"kind":"INPUT_OBJECT","name":"CreateStatusColumnSettingsInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_dropdown_column","description":"Creates a new dropdown column with strongly typed settings. Dropdown columns allow users to select from a predefined list of options. This mutation is specifically for dropdown columns and provides type-safe creation with dropdown options configuration.","args":[{"name":"board_id","description":"The unique identifier of the board where the column will be created.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"id","description":"The unique identifier of the column. If not provided, a new id will be generated.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"title","description":"The display title for the column.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":"The description text for the column.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"after_column_id","description":"The column's unique identifier after which the new column will be inserted.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"defaults","description":"Configuration object for dropdown column settings including available dropdown options and their properties.","type":{"kind":"INPUT_OBJECT","name":"CreateDropdownColumnSettingsInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_column","description":"Generic mutation for creating any column type with validation. Supports creating column with properties like title, description, and type-specific defaults/settings. The mutation validates input against the column type's schema before applying changes. Use get_column_type_schema query to understand available properties for each column type.","args":[{"name":"board_id","description":"The unique identifier of the board where the column will be created.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"id","description":"The unique identifier of the column. If not provided, a new id will be generated.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"title","description":"The display title for the column.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":"The description text for the column.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"after_column_id","description":"The column's unique identifier after which the new column will be inserted.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"capabilities","description":"Column capabilities configuration. If not provided, default capabilities will be created.","type":{"kind":"INPUT_OBJECT","name":"ColumnCapabilitiesInput","ofType":null},"defaultValue":null},{"name":"defaults","description":"Type-specific configuration object containing column defaults and settings. Accepts both JSON objects (recommended) and JSON strings (for backward compatibility). For JSON objects, use get_column_type_schema query to see available properties and validation rules. Examples: status column labels, dropdown options, number formatting rules, date display preferences.","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"column_type","description":"The column type being updated (e.g., \"text\", \"status\", \"date\", \"numbers\"). Must match the existing column type. Determines which properties are valid in the defaults object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"attach_status_managed_column","description":"Creates a new status column in a board that is linked to a managed column. The column data and settings are controlled by the managed column. Only title and description can be overridden locally.","args":[{"name":"board_id","description":"The unique identifier of the board where the column will be created.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"managed_column_id","description":"The unique identifier of the managed column to attach.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"title","description":"Optional title override for the column. If not provided, uses the managed column title.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"Optional description override for the column. If not provided, uses the managed column description.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"after_column_id","description":"The column's unique identifier after which the new column will be inserted.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"attach_dropdown_managed_column","description":"Creates a new dropdown column in a board that is linked to a managed column. The column data and settings are controlled by the managed column. Title, description, and dropdown-specific settings (limit_select, label_limit_count) can be overridden locally.","args":[{"name":"board_id","description":"The unique identifier of the board where the column will be created.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"managed_column_id","description":"The unique identifier of the managed column to attach.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"title","description":"Optional title override for the column. If not provided, uses the managed column title.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"Optional description override for the column. If not provided, uses the managed column description.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"after_column_id","description":"The column's unique identifier after which the new column will be inserted.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"settings","description":"Optional settings overrides for the dropdown column.","type":{"kind":"INPUT_OBJECT","name":"DropdownSettingsOverridesInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"add_required_column","description":"Add a required column to a board","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"type","description":"The type of entity for validations the default is board","type":{"kind":"ENUM","name":"ValidationsEntityType","ofType":null},"defaultValue":"board"}],"type":{"kind":"OBJECT","name":"RequiredColumns","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remove_required_column","description":"Remove a required column from a board","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"type","description":"The type of entity for validations the default is board","type":{"kind":"ENUM","name":"ValidationsEntityType","ofType":null},"defaultValue":"board"}],"type":{"kind":"OBJECT","name":"RequiredColumns","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_dependency_column","description":"Update the dependency column for a specific pulse","args":[{"name":"boardId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"pulseId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DependencyValueInput","ofType":null}},"defaultValue":null},{"name":"columnId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"successor_new_date","description":"Optional new date for the successor node (or one of its descendants). When provided, updates the successor date and all predecessor edge lags.","type":{"kind":"INPUT_OBJECT","name":"TimelineDateInput","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"batch_update_dependency_column","description":"Batch update the dependency column values in a board. Limited to 50 items per batch.","args":[{"name":"boardId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"columnId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"values","description":"The list of pulses with their dependency column values to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DependencyPulseValueInput","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"add_content_to_doc_from_markdown","description":"Adds markdown content to an existing document by converting it into document blocks. Use this to append content to the end of a document or insert content after a specific block. The markdown will be parsed and converted into the appropriate document block types (text, headers, lists, etc.). Returns the IDs of the newly created blocks on success.","args":[{"name":"docId","description":"The document's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"markdown","description":"The markdown content to convert into document blocks.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"afterBlockId","description":"Optional block ID to insert the markdown content after.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DocBlocksFromMarkdownResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_doc","description":"Permanently deletes a document and all its content from the system. This action cannot be undone. The document will be removed from all user views and workspaces. Use with caution - ensure the document is no longer needed before deletion. Returns success status and the deleted document ID.","args":[{"name":"docId","description":"The document's unique identifier. Get this from document queries or creation responses.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"duplicate_doc","description":"Creates an exact copy of an existing document, including all content, structure, and formatting. Use this to create templates, backup documents before major changes, or create variations of existing documents. The duplicated document will have a new unique ID and can be modified independently. Returns the new document's ID on success.","args":[{"name":"docId","description":"The document's unique identifier to duplicate. Get this from document queries or creation responses.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"duplicateType","description":"Controls what gets duplicated: content only (default) or content with update history. Choose content-only for clean copies.","type":{"kind":"ENUM","name":"DuplicateType","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"import_doc_from_html","description":"Imports HTML content as a new document by converting it into document blocks. The HTML will be parsed and converted into the appropriate document block types (text, headers, lists, etc.). Returns the ID of the newly created document on success.","args":[{"name":"html","description":"The HTML content to convert into a new document.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"workspaceId","description":"The workspace ID where the document should be created.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"kind","description":"The access level of the document. Defaults to \"public\" if not specified.","type":{"kind":"ENUM","name":"DocKind","ofType":null},"defaultValue":null},{"name":"folderId","description":"The folder ID where the document should be placed. If not provided, the document will be created at the root level of the workspace.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"title","description":"The name/title of the document. If not provided, the title will be inferred from the HTML content.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ImportDocFromHtmlResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_article_block","description":"Updates the content of a specific article block. The block must belong to a draft article that the user has permission to edit. Cannot update blocks of published articles.","args":[{"name":"block_id","description":"The ID of the block to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"content","description":"The new content for the block","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ArticleBlock","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_doc_name","description":"Update a document's name/title. Changes are applied immediately and visible to all users with access to the document.","args":[{"name":"docId","description":"The document's unique identifier. Use document ID from API responses","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":"The new name/title for the document. Should be descriptive and help users identify the document purpose.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_favorite","description":"Add workspace object to favorites","args":[{"name":"input","description":"The input for adding an object to the favorites","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateFavoriteInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateFavoriteResultType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_favorite","description":"Remove an object from favorites","args":[{"name":"input","description":"The input for removing an object from favorites","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteFavoriteInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeleteFavoriteInputResultType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_favorite_position","description":"Update the position of an object in favorites","args":[{"name":"input","description":"The input for updating the favorite object position","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateObjectHierarchyPositionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateFavoriteResultType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_marketplace_app_discount","description":null,"args":[{"name":"app_id","description":"The id of an app","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"account_slug","description":"Slug of an account","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMarketplaceAppDiscountResult","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"grant_marketplace_app_discount","description":null,"args":[{"name":"app_id","description":"The id of an app","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"account_slug","description":"Slug of an account","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"data","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"GrantMarketplaceAppDiscountData","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GrantMarketplaceAppDiscountResult","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"create_app","description":"Creates a new app with the specified configuration.","args":[{"name":"input","description":"App configuration data","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAppInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreateAppResponse","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_app","description":"Updates an existing app. If the app latest version is live, a new draft version is automatically created and updated.","args":[{"name":"id","description":"The app identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"input","description":"App configuration data to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAppInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AppType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_app_feature","description":"Update an app feature.","args":[{"name":"id","description":"The ID of the app feature to update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"input","description":"The input data for updating the app feature.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAppFeatureInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AppFeatureType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_app_feature","description":"Create a new app feature.","args":[{"name":"name","description":"The name of the app feature. If not provided, a default name will be used.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"slug","description":"The unique slug identifier for the app feature.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"app_id","description":"The ID of the app to create the app feature for.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"app_version_id","description":"The ID of the app version to create the app feature for. If not provided, the latest draft version will be used.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"type","description":"The type of the app feature to create.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AppFeatureTypeE","ofType":null}},"defaultValue":null},{"name":"data","description":"The app feature data to update. This structure is dynamic and depends on the different app feature types.","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"deployment","description":"The deployment data for the app feature. https://developer.monday.com/apps/docs/deploy-your-app","type":{"kind":"INPUT_OBJECT","name":"AppFeatureReleaseInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AppFeatureType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"add_file_to_column","description":"Add a file to a column value.","args":[{"name":"column_id","description":"The column to add the file to.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"file","description":"The file to upload.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"File","ofType":null}},"defaultValue":null},{"name":"item_id","description":"The item to add the file to.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Asset","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"add_file_to_update","description":"Add a file to an update.","args":[{"name":"file","description":"The file to upload.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"File","ofType":null}},"defaultValue":null},{"name":"update_id","description":"The update to add the file to.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Asset","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"add_subscribers_to_board","description":"Add subscribers to a board.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"kind","description":"Subscribers kind (subscriber / owner)","type":{"kind":"ENUM","name":"BoardSubscriberKind","ofType":null},"defaultValue":"subscriber"},{"name":"user_ids","description":"User ids to subscribe to a board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":true,"deprecationReason":"use add_users_to_board instead"},{"name":"add_teams_to_board","description":"Add teams subscribers to a board.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"kind","description":"Subscribers kind (subscriber / owner)","type":{"kind":"ENUM","name":"BoardSubscriberKind","ofType":null},"defaultValue":"subscriber"},{"name":"team_ids","description":"Team ids to subscribe to a board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"add_teams_to_workspace","description":"Add teams to a workspace.","args":[{"name":"kind","description":"Subscribers kind (subscriber / owner)","type":{"kind":"ENUM","name":"WorkspaceSubscriberKind","ofType":null},"defaultValue":"subscriber"},{"name":"team_ids","description":"Team ids to subscribe to a workspace","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"workspace_id","description":"The workspace's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"add_users_to_board","description":"Add subscribers to a board.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"kind","description":"Subscribers kind (subscriber / owner)","type":{"kind":"ENUM","name":"BoardSubscriberKind","ofType":null},"defaultValue":"subscriber"},{"name":"user_ids","description":"User ids to subscribe to a board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"add_users_to_team","description":"Add users to team.","args":[{"name":"team_id","description":"The team's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"user_ids","description":"User ids to add to/remove from the team","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ChangeTeamMembershipsResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"add_users_to_workspace","description":"Add users to a workspace.","args":[{"name":"kind","description":"Subscribers kind (subscriber / owner)","type":{"kind":"ENUM","name":"WorkspaceSubscriberKind","ofType":null},"defaultValue":"subscriber"},{"name":"user_ids","description":"User ids to subscribe to a workspace","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"workspace_id","description":"The workspace's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"archive_board","description":"Archive a board.","args":[{"name":"board_id","description":"The board's unique identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Board","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"archive_group","description":"Archives a group in a specific board.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"group_id","description":"The group's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Group","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"archive_item","description":"Archive an item.","args":[{"name":"item_id","description":"The item's unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"batch_extend_trial_period","description":"Extends trial period of an application to selected accounts","args":[{"name":"account_slugs","description":"The accounts' slags. Max: 5","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null},{"name":"app_id","description":"The id of an application.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"duration_in_days","description":"The amount of days to extend a trial period. Max: 365","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"plan_id","description":"The id of a payment plan.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BatchExtendTrialPeriod","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"change_column_metadata","description":"Change a column's properties","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_id","description":"The column's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"column_property","description":"The property name of the column to be changed (title / description).","type":{"kind":"ENUM","name":"ColumnProperty","ofType":null},"defaultValue":null},{"name":"value","description":"The new description of the column.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"change_column_title","description":"Change a column's title","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_id","description":"The column's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"title","description":"The new title of the column.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Column","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"change_column_value","description":"Change an item's column value.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_id","description":"The column's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"create_labels_if_missing","description":"Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"item_id","description":"The item's unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":"The new value of the column.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"change_item_position","description":"Change an item's position.","args":[{"name":"group_id","description":"The group's unique identifier. When provided, the item will be moved to the\ngroup. Mutually exclusive with 'relative_to'.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"group_top","description":"Only allowed in combination with 'group_id'. Determines whether the item\nwill be placed at the top or bottom of the group.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"item_id","description":"The item's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"position_relative_method","description":"Whether to place the item before or after the relative_to item. Only allowed with 'relative_to'.","type":{"kind":"ENUM","name":"PositionRelative","ofType":null},"defaultValue":null},{"name":"relative_to","description":"The ID of an item in the same board to set the position relative to. Mutually exclusive with 'group_id'.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"change_multiple_column_values","description":"Changes the column values of a specific item.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_values","description":"The column values updates.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null},{"name":"create_labels_if_missing","description":"Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"item_id","description":"The item's unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"change_simple_column_value","description":"Change an item's column with simple value.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_id","description":"The column's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"create_labels_if_missing","description":"Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"item_id","description":"The item's unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":"The new simple value of the column (pass null to empty the column).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clear_item_updates","description":"Clear an item's updates.","args":[{"name":"item_id","description":"The item's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"complexity","description":"Get the complexity data of your mutations.","args":[],"type":{"kind":"OBJECT","name":"Complexity","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_board","description":"Create a new board.","args":[{"name":"board_kind","description":"The board's kind (public / private / share)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardKind","ofType":null}},"defaultValue":null},{"name":"board_name","description":"The board's name","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"board_owner_ids","description":"Optional board owner user ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"board_owner_team_ids","description":"Optional board owner team ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"board_subscriber_ids","description":"Optional board subscriber ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"board_subscriber_teams_ids","description":"Optional list of subscriber team ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"description","description":"Optional board's description","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"empty","description":"Optional flag to create an empty board (without any default items)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"},{"name":"folder_id","description":"Optional board folder id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"item_nickname","description":"Optional item nickname configuration for the board","type":{"kind":"INPUT_OBJECT","name":"ItemNicknameInput","ofType":null},"defaultValue":null},{"name":"template_id","description":"Optional board template id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"workspace_id","description":"Optional workspace id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Board","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_doc","description":"Create a new doc.","args":[{"name":"location","description":"new monday doc location","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateDocInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Document","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_doc_block","description":"Create new document block","args":[{"name":"after_block_id","description":"After which block to insert this one. If not provided, will be inserted first in the document","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"content","description":"The block's content.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null},{"name":"doc_id","description":"The doc's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"parent_block_id","description":"The parent block id to append the created block under.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"type","description":"The block's content type.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"DocBlockContentType","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DocumentBlock","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_folder","description":"Creates a folder in a specific workspace.","args":[{"name":"color","description":"The folder's color.","type":{"kind":"ENUM","name":"FolderColor","ofType":null},"defaultValue":null},{"name":"custom_icon","description":"The folder's custom icon.","type":{"kind":"ENUM","name":"FolderCustomIcon","ofType":null},"defaultValue":null},{"name":"font_weight","description":"The folder's font weight.","type":{"kind":"ENUM","name":"FolderFontWeight","ofType":null},"defaultValue":null},{"name":"name","description":"The folder's name","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"parent_folder_id","description":"The folder's parent folder unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"workspace_id","description":"The unique identifier of the workspace to create this folder in","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Folder","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_group","description":"Creates a new group in a specific board.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"group_color","description":"A hex representing the group's color","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"group_name","description":"The name of the new group.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"position","description":"The group's position in the board. DEPRECATED! Replaced with relative position (position_relative_method, relative_to)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"position_relative_method","description":"The position relative method to another group (before_at / after_at)","type":{"kind":"ENUM","name":"PositionRelative","ofType":null},"defaultValue":null},{"name":"relative_to","description":"The group to set the position next to.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Group","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_item","description":"Create a new item.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_values","description":"The column values of the new item.","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"create_labels_if_missing","description":"Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"group_id","description":"The group's unique identifier.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"item_name","description":"The new item's name.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"position_relative_method","description":"The position relative method to another item (before_at / after_at)","type":{"kind":"ENUM","name":"PositionRelative","ofType":null},"defaultValue":null},{"name":"relative_to","description":"The item to set the position next to.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_notification","description":"Create a new notification.","args":[{"name":"target_id","description":"The target's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"target_type","description":"The target's type (Project / Post)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"NotificationTargetType","ofType":null}},"defaultValue":null},{"name":"text","description":"The notification text.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"user_id","description":"The user's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Notification","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_or_get_tag","description":"Create a new tag or get it if it already exists.","args":[{"name":"board_id","description":"The private board id to create the tag at (not needed for public boards)","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"tag_name","description":"The new tag's name.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Tag","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_subitem","description":"Create subitem.","args":[{"name":"column_values","description":"The column values of the new item.","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"create_labels_if_missing","description":"Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"item_name","description":"The new item's name.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"parent_item_id","description":"The parent item's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_webhook","description":"Create a new webhook.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"config","description":"The webhook config","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"event","description":"The event to listen to","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"WebhookEventType","ofType":null}},"defaultValue":null},{"name":"url","description":"The webhook URL.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Webhook","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_workspace","description":"Create a new workspace.","args":[{"name":"account_product_id","description":"The account product's id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":"The Workspace's description","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"kind","description":"The workspace's kind (open / closed / template)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"WorkspaceKind","ofType":null}},"defaultValue":null},{"name":"name","description":"The Workspace's name","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Workspace","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_board","description":"Delete a board.","args":[{"name":"board_id","description":"The board's unique identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Board","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_doc_block","description":"Delete a document block","args":[{"name":"block_id","description":"The block's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DocumentBlockIdOnly","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_folder","description":"Deletes a folder in a specific workspace.","args":[{"name":"folder_id","description":"The folder's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Folder","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_group","description":"Deletes a group in a specific board.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"group_id","description":"The group's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Group","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_item","description":"Delete an item.","args":[{"name":"item_id","description":"The item's unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_subscribers_from_board","description":"Remove subscribers from the board.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"user_ids","description":"User ids to unsubscribe from a board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"delete_teams_from_board","description":"Remove team subscribers from the board.","args":[{"name":"board_id","description":"The board's unique identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"team_ids","description":"Team ids to unsubscribe from a workspace","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"delete_teams_from_workspace","description":"Delete teams from a workspace.","args":[{"name":"team_ids","description":"Team ids to unsubscribe from a workspace","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"workspace_id","description":"The workspace's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"delete_users_from_workspace","description":"Delete users from a workspace.","args":[{"name":"user_ids","description":"User ids to unsubscribe from a workspace","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"workspace_id","description":"The workspace's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"delete_webhook","description":"Delete a new webhook.","args":[{"name":"id","description":"The webhook's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Webhook","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_workspace","description":"Delete workspace.","args":[{"name":"workspace_id","description":"The workspace's unique identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Workspace","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"duplicate_board","description":"Duplicate a board.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"board_name","description":"Optional the new board's name. If omitted then automatically generated","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"duplicate_type","description":"The duplication type.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"DuplicateBoardType","ofType":null}},"defaultValue":null},{"name":"folder_id","description":"Optional destination folder in destination workspace. Defaults to the original board folder.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"keep_subscribers","description":"Duplicate the subscribers to the new board. Defaults to false.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"workspace_id","description":"Optional destination workspace. Defaults to the original board workspace.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"BoardDuplication","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"duplicate_group","description":"Duplicate a group.","args":[{"name":"add_to_top","description":"Should the new group be added to the top.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"group_id","description":"The group's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"group_title","description":"The group's title.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Group","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"duplicate_item","description":"Duplicate an item.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"item_id","description":"The item's unique identifier. *Required","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"with_updates","description":"Duplicate with the item's updates.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"increase_app_subscription_operations","description":"Increase operations counter","args":[{"name":"increment_by","description":"Must be positive number.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"kind","description":"Operation name. A string of up to 14 characters containing alphanumeric characters and the symbols -_ ","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"global\""}],"type":{"kind":"OBJECT","name":"AppSubscriptionOperationsCounter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"move_item_to_board","description":"Move an item to a different board.","args":[{"name":"board_id","description":"The unique identifier of a target board.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"columns_mapping","description":"Mapping of columns between the original board and target board","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ColumnMappingInput","ofType":null}}},"defaultValue":null},{"name":"group_id","description":"The unique identifier of a target group.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"item_id","description":"The unique identifier of an item to move.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"subitems_columns_mapping","description":"Mapping of subitem columns between the original board and target board","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ColumnMappingInput","ofType":null}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"move_item_to_group","description":"Move an item to a different group.","args":[{"name":"group_id","description":"The group's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"item_id","description":"The item's unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remove_mock_app_subscription","description":"Remove mock app subscription for the current account","args":[{"name":"app_id","description":"The app id of the app to remove the mocked subscription for.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"partial_signing_secret","description":"The last 10 characters of the app's signing secret.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AppSubscription","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remove_users_from_team","description":"Remove users from team.","args":[{"name":"team_id","description":"The team's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"user_ids","description":"User ids to add to/remove from the team","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ChangeTeamMembershipsResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"set_board_permission","description":"Set or update the board's permission to specified role. This concept is also\nknown as default board role, general access or board permission set.","args":[{"name":"basic_role_name","description":"The basic role name to set. One of: editor (can edit structure and content),\ncontributor (can edit content only), viewer (read-only access). Note:\nassigned_contributor is not yet supported.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardBasicRoleName","ofType":null}},"defaultValue":null},{"name":"board_id","description":"The board's unique identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"SetBoardPermissionResponse","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"set_mock_app_subscription","description":"Set mock app subscription for the current account","args":[{"name":"app_id","description":"The app id of the app to mock subscription for.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"billing_period","description":"Billing period [monthly/yearly]","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"is_trial","description":"Is the subscription a trial","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"max_units","description":"Maximum number of units for the mocked plan","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"partial_signing_secret","description":"The last 10 characters of the app's signing secret.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"plan_id","description":"The plan id for the mocked plan","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"pricing_version","description":"Pricing plans version","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"renewal_date","description":"The subscription renewal date","type":{"kind":"SCALAR","name":"Date","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AppSubscription","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_assets_on_item","description":"Update item column value by existing assets","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_id","description":"The column's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"files","description":"Array of files values.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FileInput","ofType":null}}}},"defaultValue":null},{"name":"item_id","description":"The item's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_board","description":"Update Board attribute.","args":[{"name":"board_attribute","description":"The board's attribute to update (name / description / communication / item_nickname)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardAttributes","ofType":null}},"defaultValue":null},{"name":"board_id","description":"The board's unique identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"new_value","description":"The new attribute value.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_board_hierarchy","description":"Update a board's position, workspace, or account product.","args":[{"name":"attributes","description":"The position and location attributes to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateBoardHierarchyAttributesInput","ofType":null}},"defaultValue":null},{"name":"board_id","description":"The board's unique identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateBoardHierarchyResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_doc_block","description":"Update a document block","args":[{"name":"block_id","description":"The block's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"content","description":"The block's content.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DocumentBlock","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_folder","description":"Updates a folder.","args":[{"name":"account_product_id","description":"The target account product's ID to move the folder to","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"color","description":"The folder's color.","type":{"kind":"ENUM","name":"FolderColor","ofType":null},"defaultValue":null},{"name":"custom_icon","description":"The folder's custom icon.","type":{"kind":"ENUM","name":"FolderCustomIcon","ofType":null},"defaultValue":null},{"name":"folder_id","description":"The folder's unique identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"font_weight","description":"The folder's font weight.","type":{"kind":"ENUM","name":"FolderFontWeight","ofType":null},"defaultValue":null},{"name":"name","description":"The folder's name","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"parent_folder_id","description":"The folder's parent folder.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"position","description":"The folder's position relative to another object","type":{"kind":"INPUT_OBJECT","name":"DynamicPosition","ofType":null},"defaultValue":null},{"name":"workspace_id","description":"The workspace's unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Folder","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_group","description":"Update an existing group.","args":[{"name":"board_id","description":"The board's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"group_attribute","description":"The groups's attribute to update (title / color / position / relative_position_after / relative_position_before)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"GroupAttributes","ofType":null}},"defaultValue":null},{"name":"group_id","description":"The Group's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"new_value","description":"The new attribute value.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Group","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_overview_hierarchy","description":"Update the position of a dashboard.","args":[{"name":"attributes","description":"The position and location attributes to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOverviewHierarchyAttributesInput","ofType":null}},"defaultValue":null},{"name":"overview_id","description":"The overview's unique identifier","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateOverviewHierarchy","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_workspace","description":"Update an existing workspace.","args":[{"name":"attributes","description":"The attributes of the workspace to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateWorkspaceAttributesInput","ofType":null}},"defaultValue":null},{"name":"id","description":"The workspace ID.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Workspace","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"use_template","description":"Use a template","args":[{"name":"board_kind","description":"The board's kind (public / private / share)","type":{"kind":"ENUM","name":"BoardKind","ofType":null},"defaultValue":null},{"name":"board_owner_ids","description":"Optional board owner user ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"board_owner_team_ids","description":"Optional board owner team ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"board_subscriber_ids","description":"Optional board subscriber ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"board_subscriber_teams_ids","description":"Optional list of subscriber team ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"callback_url_on_complete","description":"The callback URL to send the workspace, boards and dashboards IDs result, after its completed in the background","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"destination_folder_id","description":"The folder ID to duplicate the template to.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"destination_folder_name","description":"The folder name to duplicate the template to, in case of multiple boards template","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"destination_name","description":"The name of the instance","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"destination_workspace_id","description":"The workspace ID to duplicate the template to, If not defined, it will be created in Main Workspace","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"skip_target_folder_creation","description":"Skips target folder creation in multiple entities templates","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"solution_extra_options","description":"Optional adding extra options","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"template_id","description":"The template ID","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"convert_board_to_project","description":"Convert an existing monday.com board into a project with enhanced project management capabilities. This mutation transforms a regular board by applying project-specific features and configurations through column mappings that define how existing board columns should be interpreted in the project context. The conversion process is asynchronous and returns a process_id for tracking completion. Optionally accepts a callback URL for notification when the conversion completes. Use this when you have an existing board with data that needs to be upgraded to a full project with advanced project management features like Resource Planner integration.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ConvertBoardToProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ConvertBoardToProjectResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_notification_setting","description":"Updates a notification setting's enabled status.","args":[{"name":"scope_type","description":"Notification settings scope types, the options are account user defaults or user private settings","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ScopeType","ofType":null}},"defaultValue":null},{"name":"scope_id","description":"Relevant when using scopeType: user, the user id of the user whose notification settings you want to update, by default the current user is used","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"setting_kind","description":"The notification setting type to update. Must be one of the allowed notification setting kinds.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"channel","description":"The channel type to update (Monday, Email, Slack, etc.)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ChannelType","ofType":null}},"defaultValue":null},{"name":"enabled","description":"Whether the notification setting should be enabled or disabled","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NotificationSetting","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"update_mute_board_settings","description":"Update mute notification settings for a board. Allows muting all notifications for all users, only for the current user, or setting mentions/assigns-only. Returns the updated mute state for the board. Requires appropriate permissions for muting all users.","args":[{"name":"board_id","description":"The ID of the board to update mute settings for. Must be a valid board ID.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"mute_state","description":"The desired mute state for the board.\n- MUTE_ALL: Mute all notifications for all users (admin only).\n- CURRENT_USER_MUTE_ALL: Mute all notifications for the current user only.\n- MENTIONS_AND_ASSIGNS_ONLY: Only notify the current user on mentions or assigns.\n- NOT_MUTED: Unmute notifications.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardMuteState","ofType":null}},"defaultValue":null},{"name":"enabled","description":"When mute_state is CUSTOM_SETTINGS, this array specifies which custom settings are enabled. Accepts IM_MENTIONED, IM_ASSIGNED, AUTOMATION_NOTIFY.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CustomizableBoardSettings","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BoardMuteSettings","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"create_object","description":"Creates a new object in the Monday.com Objects Platform. The type of object created is determined by the object_type_unique_key parameter. This mutation can create boards, docs, dashboards, workflows, or specialized objects like CRM, capacity manager, etc. Under the hood, this creates a board with the corresponding app_feature_id.","args":[{"name":"name","description":"The name of the new object. This will be displayed in the Monday.com interface as the primary identifier for this object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"privacy_kind","description":"The kind/visibility setting of the object (private, public, share). Determines who can access it.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"PrivacyKind","ofType":null}},"defaultValue":null},{"name":"workspace_id","description":"The ID of the workspace containing this object. Null indicates the object is in the main workspace.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":"Optional description of the object, providing additional context about its purpose or contents.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"folder_id","description":"The ID of the folder to create the object in. Used for organizing objects in folders. visible in the left pane of the platform. Must be a valid and existing workspace id in monday.com.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"owner_ids","description":"List of user IDs who will be assigned as owners of this object. Owners have full control permissions.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"owner_team_ids","description":"List of team IDs who will be assigned as owners of this object. All members of these teams will have owner permissions.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"subscriber_ids","description":"List of user IDs who will be added as subscribers to this object. Subscribers receive notifications about changes.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"subscriber_teams_ids","description":"List of team IDs who will be added as subscribers to this object. All members of these teams will receive notifications about changes.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"object_type_unique_key","description":"The unique identifier for the object type, formatted as 'app_slug::app_feature_slug. To create an object you must provide this key. You can get a list of available keys by using the 'object_types_unique_keys' query.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"payload","description":"JSON of creation payload, that will include additional fields for the object creation","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Object","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_object","description":"Permanently deletes an object from the Monday.com Objects Platform. Unlike archiving, deletion is only reversible for 30 days and removes all associated data. This operation works for any object type including boards, docs, dashboards, workflows, and specialized objects (CRM, capacity manager, etc.). WARNING: This operation cannot be undone after 30 days.","args":[{"name":"id","description":"The unique identifier of the object to delete. Each object has a unique ID regardless of its type (board, doc, dashboard, etc.). WARNING: Deletion is only reversible for 30 days.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Object","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"archive_object","description":"Archives an object in the Monday.com Objects Platform, changing its state to \"archived\" while preserving all data. Archived objects remain in the system but are hidden from regular views. This operation works for any object type including boards, docs, dashboards, workflows, and specialized objects (CRM, capacity manager, etc.). Under the hood, this archives the board that represents this object.","args":[{"name":"id","description":"The unique identifier of the object to archive. Each object has a unique ID regardless of its type (board, doc, dashboard, etc.).","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Object","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"add_subscribers_to_object","description":"Adds users to an existing object as either subscribers or owners. Subscribers receive notifications about object changes, while owners have full control permissions. Works with any object type including boards, docs, dashboards, workflows, and specialized objects (CRM, capacity manager, etc.). Equivalent to the add_users_to_board mutation in the boards API.","args":[{"name":"id","description":"The unique identifier of the object to add users to. Each object has a unique ID regardless of its type (board, doc, dashboard, etc.).","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"user_ids","description":"List of user IDs to add to the object. These must be valid user IDs existing in the Monday.com platform.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"kind","description":"The role to assign to the users. \"owner\" grants full control permissions, while \"subscriber\" only provides notification access. If not specified, users will be added as subscribers.","type":{"kind":"ENUM","name":"SubscriberKind","ofType":null},"defaultValue":"SUBSCRIBER"}],"type":{"kind":"OBJECT","name":"Object","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_object","description":"Updates an object.","args":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateObjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Object","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"publish_object","description":"Publishes object out of draft state. Returns {success: true} on success, {success: false} on failure.","args":[{"name":"id","description":"The unique identifier of the object instance.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ObjectOperationResponse","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"unpublish_object","description":"Unpublishes object from public state back to draft state. Returns {success: true} on success, {success: false} on failure.","args":[{"name":"id","description":"The unique identifier of the object instance.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ObjectOperationResponse","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"connect_project_to_portfolio","description":"Connect project to portfolio","args":[{"name":"projectBoardId","description":"The ID of the project to connect","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"portfolioBoardId","description":"The ID of the portfolio to connect to","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ConnectProjectResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_portfolio","description":"Create a new portfolio","args":[{"name":"boardName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"boardPrivacy","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"destinationWorkspaceId","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"CreatePortfolioResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_directory_resources_attributes","description":"Update attributes (Job Role, Skills, or Location) for multiple resources in the directory","args":[{"name":"attribute","description":"The attribute type to update (JOB_ROLE, SKILLS, or LOCATION)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"DirectoryResourceAttribute","ofType":null}},"defaultValue":null},{"name":"values","description":"The values of the attribute to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null},{"name":"resource_ids","description":"List of resource IDs to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateDirectoryResourceAttributesResponse","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_team","description":"Creates a new team.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTeamAttributesInput","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"CreateTeamOptionsInput","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Team","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"activate_users","description":"Activates the specified users.","args":[{"name":"user_ids","description":"The ids of the users to activate. (Limit: 200)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ActivateUsersResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deactivate_users","description":"Deactivates the specified users.","args":[{"name":"user_ids","description":"The ids of the users to deactivate. (Limit: 200)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DeactivateUsersResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_team","description":"Deletes the specified team.","args":[{"name":"team_id","description":"The team to be deleted.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Team","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_users_role","description":"Updates the role of the specified users.","args":[{"name":"user_ids","description":"The ids of the users to update. (Limit: 200)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"new_role","description":"The base role name (e.g. admin, member, etc.)","type":{"kind":"ENUM","name":"BaseRoleName","ofType":null},"defaultValue":null},{"name":"role_id","description":"The ID of a custom role","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUsersRoleResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"assign_team_owners","description":"Assigns the specified users as owners of the specified team.","args":[{"name":"team_id","description":"The team identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"user_ids","description":"The user identifiers (max 200)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"AssignTeamOwnersResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"remove_team_owners","description":"Removes the specified users as owners of the specified team.","args":[{"name":"team_id","description":"The team identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"user_ids","description":"The user identifiers (max 200)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"RemoveTeamOwnersResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_email_domain","description":"Updates the email domain for the specified users.","args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEmailDomainAttributesInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateEmailDomainResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_multiple_users","description":"Updates attributes for users.","args":[{"name":"user_updates","description":"List of user updates, each containing an ID and attribute updates.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UserUpdateInput","ofType":null}}}},"defaultValue":null},{"name":"bypass_confirmation_for_claimed_domains","description":"Whether to bypass email confirmation for claimed domains.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"use_async_mode","description":"Whether to use async mode. If true, the update will be done in the background and can handle more than 200 users at once.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"UpdateUserAttributesResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"invite_users","description":"Invite users to the account.","args":[{"name":"emails","description":"The emails of the users to invite.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null},{"name":"user_role","description":"The new role of the users.","type":{"kind":"ENUM","name":"UserRole","ofType":null},"defaultValue":null},{"name":"product","description":"The product to invite the users to","type":{"kind":"ENUM","name":"Product","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"InviteUsersResult","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_widget","description":"Create a new widget.","args":[{"name":"parent","description":"Parent container for the widget (dashboard or board view).","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"WidgetParentInput","ofType":null}},"defaultValue":null},{"name":"kind","description":"The kind of widget to create (i.e CHART, NUMBER, BATTERY, CALENDAR, GANTT).","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExternalWidget","ofType":null}},"defaultValue":null},{"name":"name","description":"The name of the widget.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"settings","description":"Widget-specific settings as JSON. Each widget type has its own JSON schema that defines the required and optional fields. The settings object must conform to the JSON schema for the specific widget type being created. To discover available widget types and their schemas, use the all_widgets_schema query which returns the complete JSON schema for each supported widget type.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"JSON","ofType":null}},"defaultValue":null},{"name":"filter","description":"WORKS ONLY IN BOARD VIEWS. Optional filter to apply to the widget data using GraphQL query syntax. Supports filtering by board columns (status, numbers, date, person, etc.) with operators like any_of, greater_than, equals, contains. Structure: { rules: [{ column_id: \"status\", compare_value: [1, 2], operator: \"any_of\" }], operator: \"and\" }. IMPORTANT: Person/People columns require \"person-{id}\" format (e.g., [\"person-3\"] not [3]). Status columns use raw indices [0,1,2]. Numbers use raw values [2,43]. Example - Filter by person: { operator: \"and\", rules: [{ column_id: \"project_owner\", operator: \"any_of\", compare_value: [\"person-3\"] }] }","type":{"kind":"INPUT_OBJECT","name":"ItemsQueryGroup","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Widget","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_widget","description":"Delete an existing widget.","args":[{"name":"id","description":"The ID of the widget to delete.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_dashboard","description":"Create a new dashboard.","args":[{"name":"name","description":"Human-readable dashboard title (UTF-8 chars).","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"workspace_id","description":"ID of the workspace that will own the dashboard.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"board_ids","description":"List of board IDs as strings (min 1 element).","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"kind","description":"Visibility level: `PUBLIC` or `PRIVATE`, default value is `PRIVATE`.","type":{"kind":"ENUM","name":"DashboardKind","ofType":null},"defaultValue":null},{"name":"board_folder_id","description":"Folder ID within the workspace in which to place the dashboard.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Dashboard","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_dashboard","description":"Update an existing dashboard.","args":[{"name":"id","description":"The ID of the dashboard to update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":"Human-readable dashboard title (UTF-8 chars).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"workspace_id","description":"The ID of the workspace to update the dashboard in.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"kind","description":"Visibility level: `PUBLIC` or `PRIVATE`.","type":{"kind":"ENUM","name":"DashboardKind","ofType":null},"defaultValue":null},{"name":"board_folder_id","description":"Folder ID within the workspace in which to place the dashboard.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Dashboard","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_dashboard","description":"Delete an existing dashboard.","args":[{"name":"id","description":"The ID of the dashboard to delete.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_form","description":"Update form properties including title, description, or question order.","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"input","description":"Complete form configuration object containing properties to create or update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateFormInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ResponseForm","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_form_settings","description":"Update form configuration including features, appearance, and accessibility options.","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"settings","description":"Complete form settings object containing all configuration options.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateFormSettingsInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ResponseForm","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_form_question","description":"Create a new question within a form. Returns the created question with auto-generated ID.","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"question","description":"Complete question object containing all properties for creation or update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FormQuestion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_form_question","description":"Update an existing question properties including title, type, or settings. Requires question ID.","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"questionId","description":"The unique identifier for the question. Used to target specific questions within a form.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"question","description":"Complete question object containing all properties for creation or update.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateQuestionInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FormQuestion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_question","description":"Permanently remove a question from a form. This action cannot be undone.","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"questionId","description":"The unique identifier for the question. Used to target specific questions within a form.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"activate_form","description":"Activate a form to make it visible to users and accept new submissions.","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deactivate_form","description":"Deactivate a form to hide it from users and stop accepting submissions. Form data is preserved.","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"shorten_form_url","description":"Shorten a URL for a form and store it in the form settings. Returns the shortened link object.","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FormShortenedLink","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_form_tag","description":"Create a new tag for a form. Tags are used to categorize and track responses. (e.g. UTM tags)","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"tag","description":"The tag data to create","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateFormTagInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"FormTag","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"update_form_tag","description":"Update an existing tag in a form","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"tagId","description":"The unique identifier for the tag","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"tag","description":"The tag data to create","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateFormTagInput","ofType":null}},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"delete_form_tag","description":"Delete a tag from a form","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"tagId","description":"The unique identifier for the tag","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"options","description":"Options for deleting the tag","type":{"kind":"INPUT_OBJECT","name":"DeleteFormTagInput","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"create_form","description":"Create a new form with specified configuration. Returns the created form with its unique token.","args":[{"name":"destination_workspace_id","description":"The workspace in which the form will be created in.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"destination_folder_id","description":"The folder in which the form will be created under.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"destination_folder_name","description":"The name of the folder in which the form will be created in.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"board_kind","description":"The board kind to create for the board in which the form will create items in.","type":{"kind":"ENUM","name":"BoardKind","ofType":null},"defaultValue":null},{"name":"destination_name","description":"The name of the board that will be created to store the form responses in.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"board_owner_ids","description":"Array of user IDs who will have owner permissions on the board in which the form will create items in.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"board_owner_team_ids","description":"Array of team IDs whose members will have owner permissions on the board in which the form will create items in.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"board_subscriber_ids","description":"Array of user IDs who will receive notifications about board activity for the board in which the form will create items in.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"board_subscriber_teams_ids","description":"Array of team IDs whose members will receive notifications about board activity for the board in which the form will create items in.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"DehydratedFormResponse","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"set_form_password","description":"Set a password on a form to restrict access. This will enable password protection for the form.","args":[{"name":"formToken","description":"The unique identifier token for the form. Required for all form-specific operations.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"input","description":"The password to set for the form. Must be at least 1 character long.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"SetFormPasswordInput","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ResponseForm","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Date","description":"A date.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationExecutionResult","description":"Result of executing an integration block","fields":[{"name":"output_fields","description":"The output fields returned by the integration block execution","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ISO8601DateTime","description":"An ISO 8601-encoded datetime (e.g., 2024-04-09T13:45:30Z)","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"JSON","description":"A JSON formatted string.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditEventCatalogueEntry","description":null,"fields":[{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"metadata_details","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogEntry","description":null,"fields":[{"name":"timestamp","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"account_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"event","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ip_address","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_agent","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"client_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"client_version","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"os_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"os_version","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"device_name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"device_type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"activity_metadata","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogPage","description":"A paginated collection of audit log entries. This object contains two properties:\n  logs, the requested page of AuditLogEntry objects matching your query, and pagination, which \n  contains metadata about the current and next page (if present).","fields":[{"name":"logs","description":"List of audit log entries for the current page. See the audit log entry object\n      for more details on this object.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogEntry","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"pagination","description":"Pagination metadata. See the pagination object for more details.","args":[],"type":{"kind":"OBJECT","name":"Pagination","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"File","description":"A file","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Pagination","description":"Pagination metadata: indicates the current page and page size, whether there\n  are more pages, and the next page number if one exists. Note that the page size reflects\n  the number of items requested, not the number of items returned.","fields":[{"name":"page","description":"Current page number (1-based)","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"page_size","description":"Number of items per page","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"has_more_pages","description":"Indicates if there are more pages available","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"next_page_number","description":"Number of the next page","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Connection","description":"Represents an integration connection between a monday.com account and an external service.","fields":[{"name":"id","description":"Unique identifier of the connection.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"accountId","description":"Identifier of the monday.com account that owns the connection.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"userId","description":"Identifier of the user who created the connection.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"provider","description":"External service provider of the connection (e.g., gmail, slack).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Human-readable display name for the connection.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"method","description":"Authentication method used by the connection (e.g., oauth, token_based).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"providerAccountIdentifier","description":"Identifier of the linked account at the provider side.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"Current state of the connection (e.g., active, inactive).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"ISO timestamp when the connection was created.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"ISO timestamp when the connection was last updated.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PaginationInput","description":"Pagination parameters for queries","fields":null,"inputFields":[{"name":"limit","description":"Maximum number of results to return","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"lastId","description":"Last ID for cursor-based pagination","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AccountTriggersByEntityId","description":"Aggregated automation runs statistics grouped by entity Ids","fields":[{"name":"id","description":"Unique identifier for the statistics result","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"automation_statistics","description":"Statistics for automations grouped by automation Id. Returns an object where each key is an automation Id, and the value contains the total count and breakdown by error reason","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workflow_statistics","description":"Statistics for workflows grouped by workflow entity Id. Returns an object where each key is a workflow entity Id, and the value contains the total count and breakdown by error reason","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AccountTriggersByEntityIdFiltersInput","description":"Filters for account triggers statistics by entity Id query","fields":null,"inputFields":[{"name":"board_id","description":"Filter by board Id","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"automation_ids","description":"Exclude statistics for the specified automation Ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null},{"name":"user_ids","description":"Filter by multiple user Ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AccountTriggerStatistics","description":"Aggregated automation runs statistics in the account","fields":[{"name":"id","description":"Unique identifier for the statistics result","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Number of successful automation runs","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"failure","description":"Number of failed automation runs","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"Total number of automation runs","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AccountTriggerStatisticsFiltersInput","description":"Filters for account trigger statistics query","fields":null,"inputFields":[{"name":"board_id","description":"Filter by board Id","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"user_ids","description":"Filter by multiple user Ids","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BlockEvent","description":"Automation block execution event","fields":[{"name":"id","description":"Document identifier","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"accountId","description":"Account identifier","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"userId","description":"User identifier who triggered the automation","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"boardId","description":"Board identifier","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"eventKind","description":"Kind of the block event","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"eventState","description":"Current state of the block event","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"triggerUuid","description":"UUID of the parent trigger event","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"triggerStarted","description":"Timestamp (epoch) when parent trigger started","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"triggerStartedAt","description":"Date when parent trigger started","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"blockStartTimestamp","description":"Timestamp (epoch) when block started","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"blockFinishTimestamp","description":"Timestamp (epoch) when block finished","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"atomicActionId","description":"Atomic action identifier","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"Block title","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"conditionSatisfied","description":"Whether block condition was satisfied","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workflowNodeId","description":"Workflow node identifier","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"entityKind","description":"Entity kind for the block","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"billingActionCountForBlock","description":"Number of billing actions counted in this block","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errorReason","description":"Error reason if block failed","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Float","description":"The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BlockEventsPage","description":"A page of block events","fields":[{"name":"blockEvents","description":"List of block events in the current page","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BlockEvent","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DateRangeInput","description":"Date range filter (inclusive)","fields":null,"inputFields":[{"name":"startDate","description":"Start date (ISO 8601)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"endDate","description":"End date (ISO 8601)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TriggerEvent","description":"Represents a single automation trigger event","fields":[{"name":"accountId","description":"Account identifier","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"triggerUuid","description":"Trigger UUID","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"eventKind","description":"Kind of the event","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"eventState","description":"Current state of the event","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"triggerStarted","description":"Timestamp (epoch) when trigger started","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"triggerStartedAt","description":"Date when trigger started","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"Creation time of the record","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errorReason","description":"Error reason if the event failed","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"billingActionsCount","description":"Number of billing actions counted for this trigger","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"waitingForTriggerName","description":"Waiting trigger name, when applicable","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"triggerDuration","description":"Duration of the trigger in milliseconds","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"entityKind","description":"Entity kind for the trigger (item / subitem / etc.)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reignitionSubscriptionId","description":"Reignition subscription ID if trigger was reignited","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hostType","description":"Host type on which the automation is executed","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hostInstanceId","description":"Host instance ID","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creatorAppFeatureReferenceId","description":"Original creator feature reference ID","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TriggerEventsFiltersInput","description":"Filters for querying trigger events","fields":null,"inputFields":[{"name":"dateRange","description":"Date range filter","type":{"kind":"INPUT_OBJECT","name":"DateRangeInput","ofType":null},"defaultValue":null},{"name":"entityKind","description":"Filter by entity kind","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"automationIds","description":"Filter by automation IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null},{"name":"workflowEntityIds","description":"Filter by workflow entity IDs","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}},"defaultValue":null},{"name":"stateFilter","description":"Filter by event state","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"itemId","description":"Filter by item identifier","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"filterByEntity","description":"Whether to filter only monday automations","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"isAutomationsEntity","description":"True if entity is automation","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"appFilter","description":"Filter by app names","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"hostType","description":"Filter by host type","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"hostInstanceId","description":"Filter by host instance identifier","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"creatorAppFeatureReferenceId","description":"Filter by creator app feature reference ID","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"billingActionCountField","description":"Billing action count field to filter by","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isWorkflowFilter","description":"Whether workflow filter is applied","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"boardId","description":"Filter by board identifier","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"statusFilter","description":"Filter by status","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TriggerEventsPage","description":"A page of trigger events and pagination data","fields":[{"name":"triggerEvents","description":"List of trigger events in the current page","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TriggerEvent","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"TriggerEventState","description":"Automation run status","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"success","description":"Automation run completed successfully","isDeprecated":false,"deprecationReason":null},{"name":"failure","description":"Automation run failed","isDeprecated":false,"deprecationReason":null},{"name":"exhausted","description":"Automation run exhausted all retry attempts","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Board","description":"A monday.com board.","fields":[{"name":"id","description":"The unique identifier of the board.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"views","description":"The board's views.","args":[{"name":"ids","description":"A list of view unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"type","description":"The view's type","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"BoardView","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updates","description":"The board's updates.","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"ids","description":"A list of items unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"board_updates_only","description":"Should include only board-level updates.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"from_date","description":null,"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"defaultValue":null},{"name":"to_date","description":null,"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Update","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"columns","description":"The board's visible columns.","args":[{"name":"ids","description":"A list of column unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"types","description":"A list of column types.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}}},"defaultValue":null},{"name":"capabilities","description":"A list of column capabilities to filter by. Returns columns that have any of the specified capabilities. Use null in the array to represent columns with no capabilities (e.g., [null] for only columns without capabilities, [null, CALCULATED] for columns without capabilities or with calculated).","type":{"kind":"LIST","name":null,"ofType":{"kind":"ENUM","name":"ColumnCapability","ofType":null}},"defaultValue":"[null, VISIBILITY]"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"access_level","description":"The user's permission level for this board (view / edit).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardAccessLevel","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"activity_logs","description":"The board log events.","args":[{"name":"column_ids","description":"Column ids to filter","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"from","description":"From timestamp (ISO8601)","type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"defaultValue":null},{"name":"group_ids","description":"Group ids to filter","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"item_ids","description":"Item id to filter","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"to","description":"To timestamp (ISO8601)","type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"defaultValue":null},{"name":"user_ids","description":"User ids to filter.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"ActivityLogType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"board_folder_id","description":"The board's folder unique identifier.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"board_kind","description":"The board's kind (public / private / share).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"columns_namespace","description":"The board's columns namespace.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"communication","description":"Get the board communication value - typically meeting ID","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The time the board was created at.","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The creator of the board.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The board's description.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"groups","description":"The board's visible groups.","args":[{"name":"ids","description":"A list of group unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Group","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hierarchy_type","description":"The hierarchy type of the board","args":[],"type":{"kind":"ENUM","name":"BoardHierarchy","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item_terminology","description":"The Board's item nickname, one of a predefined set of values, or a custom user value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"items_count","description":"The number of items on the board","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"items_limit","description":"The maximum number of items this board can have","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"items_page","description":"The board's items (rows).","args":[{"name":"cursor","description":"An opaque token representing the position in the result set from which to\nresume fetching items. Use this to paginate through large result sets.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"hierarchy_scope_config","description":"The hierarchy config to use for the query filters.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":"The maximum number of items to fetch in a single request. Use this to\ncontrol the size of the result set and manage pagination. Maximum: 500.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":"25"},{"name":"query_params","description":"A set of parameters to filter, sort, and control the scope of the items\nquery. Use this to customize the results based on specific criteria.","type":{"kind":"INPUT_OBJECT","name":"ItemsQuery","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemsResponse","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The board's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"object_type_unique_key","description":"The Board's object type unique key","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"owner","description":"The owner of the board.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":true,"deprecationReason":"This field returned creator of the board. Please use 'creator' or 'owners' fields instead."},{"name":"owners","description":"List of user board owners","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"permissions","description":"The board's permissions.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The board's state (all / active / archived / deleted).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"State","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscribers","description":"The board's subscribers.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"The board's specific tags.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Tag","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team_owners","description":"List of team board owners","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"team_subscribers","description":"The board's team subscribers.","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"top_group","description":"The top group at this board.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Group","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The board object type.","args":[],"type":{"kind":"ENUM","name":"BoardObjectType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The last time the board was updated at.","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The Board's url","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"workspace","description":"The workspace that contains this board (null for main workspace).","args":[],"type":{"kind":"OBJECT","name":"Workspace","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workspace_id","description":"The board's workspace unique identifier (null for main workspace).","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BoardView","description":"A board's view.","fields":[{"name":"id","description":"The view's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The view's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The view's type.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings_str","description":"The view's settings in a string form.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"view_specific_data_str","description":"Specific board view data (supported only for forms)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"source_view_id","description":"The view's template id if it was duplicated from other view","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings","description":"The view's settings, the structure varies by view type","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sort","description":"The view's sort","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"filter_user_id","description":"The view's filter user id","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"filter_team_id","description":"The view's filter team id","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"The view's tags","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"filter","description":"The view's filter","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"access_level","description":"The view's access level","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardViewAccessLevel","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BoardViewAccessLevel","description":"The board view access level of the user","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"view","description":"View","isDeprecated":false,"deprecationReason":null},{"name":"edit","description":"Edit","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ColumnPropertyInput","description":null,"fields":null,"inputFields":[{"name":"column_id","description":"The ID of the column","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"visible","description":"Whether the column is visible","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ColumnsConfigInput","description":null,"fields":null,"inputFields":[{"name":"column_properties","description":"Configuration for main board columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ColumnPropertyInput","ofType":null}}},"defaultValue":null},{"name":"subitems_column_properties","description":"Configuration for subitems columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ColumnPropertyInput","ofType":null}}},"defaultValue":null},{"name":"floating_columns_count","description":"Number of floating columns to display","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"column_order","description":"Order of columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"CompareValue","description":"A string or number value for comparison","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"GroupByColumnConfigInput","description":"Configuration settings for group by column","fields":null,"inputFields":[{"name":"sortSettings","description":"Sort settings for the column","type":{"kind":"INPUT_OBJECT","name":"GroupBySortSettingsInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"GroupByConditionInput","description":"Condition for grouping items by column","fields":null,"inputFields":[{"name":"columnId","description":"ID of the column to group by","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"config","description":"Configuration for the group by column","type":{"kind":"INPUT_OBJECT","name":"GroupByColumnConfigInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"GroupBySettingsInput","description":"Settings for grouping board items","fields":null,"inputFields":[{"name":"conditions","description":"List of conditions for grouping items","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"GroupByConditionInput","ofType":null}}}},"defaultValue":null},{"name":"hideEmptyGroups","description":"Whether to hide groups with no items","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"GroupBySortSettingsInput","description":"Sort settings for group by configuration","fields":null,"inputFields":[{"name":"direction","description":"Sort direction for the group","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SortDirection","ofType":null}},"defaultValue":null},{"name":"type","description":"Type of sorting to apply","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ItemsOrderByDirection","description":"Sort direction","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"asc","description":"Ascending order","isDeprecated":false,"deprecationReason":null},{"name":"desc","description":"Descending order","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemsQueryGroup","description":"A group of rules or rule groups","fields":null,"inputFields":[{"name":"rules","description":"A list of rules","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsQueryRule","ofType":null}}},"defaultValue":null},{"name":"groups","description":"A list of rule groups","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsQueryGroup","ofType":null}}},"defaultValue":null},{"name":"operator","description":"The operator to use for the query rules or rule groups. Default: AND","type":{"kind":"ENUM","name":"ItemsQueryOperator","ofType":null},"defaultValue":"and"}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ItemsQueryOperator","description":"Logical operator","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"or","description":"Logical OR","isDeprecated":false,"deprecationReason":null},{"name":"and","description":"Logical AND","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemsQueryOrderBy","description":"Sort the results by specified columns","fields":null,"inputFields":[{"name":"column_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"direction","description":"Sort direction (defaults to ASC)","type":{"kind":"ENUM","name":"ItemsOrderByDirection","ofType":null},"defaultValue":"asc"}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemsQueryRule","description":"A rule to filter items by a specific column","fields":null,"inputFields":[{"name":"column_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"compare_value","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"CompareValue","ofType":null}},"defaultValue":null},{"name":"compare_attribute","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"operator","description":null,"type":{"kind":"ENUM","name":"ItemsQueryRuleOperator","ofType":null},"defaultValue":"any_of"}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ItemsQueryRuleOperator","description":"Rule operator","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"any_of","description":"Any of the values","isDeprecated":false,"deprecationReason":null},{"name":"not_any_of","description":"None of the values","isDeprecated":false,"deprecationReason":null},{"name":"is_empty","description":"Empty value","isDeprecated":false,"deprecationReason":null},{"name":"is_not_empty","description":"Not empty value","isDeprecated":false,"deprecationReason":null},{"name":"greater_than","description":"Greater than the value","isDeprecated":false,"deprecationReason":null},{"name":"greater_than_or_equals","description":"Greater than or equal to the value","isDeprecated":false,"deprecationReason":null},{"name":"lower_than","description":"Lower than the value","isDeprecated":false,"deprecationReason":null},{"name":"lower_than_or_equal","description":"Lower than or equal to the value","isDeprecated":false,"deprecationReason":null},{"name":"between","description":"Between the two values","isDeprecated":false,"deprecationReason":null},{"name":"not_contains_text","description":"Does not contain the text","isDeprecated":false,"deprecationReason":null},{"name":"contains_text","description":"Contains the text","isDeprecated":false,"deprecationReason":null},{"name":"contains_terms","description":"Contains all the terms","isDeprecated":false,"deprecationReason":null},{"name":"starts_with","description":"Starts with the value","isDeprecated":false,"deprecationReason":null},{"name":"ends_with","description":"Ends with the value","isDeprecated":false,"deprecationReason":null},{"name":"within_the_next","description":"Within the next","isDeprecated":false,"deprecationReason":null},{"name":"within_the_last","description":"Within the last","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"SortDirection","description":"Direction for sorting items","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":"Ascending order","isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":"Descending order","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TableViewSettingsInput","description":"Settings configuration for table view display options","fields":null,"inputFields":[{"name":"columns","description":"Column visibility configuration for the board view","type":{"kind":"INPUT_OBJECT","name":"ColumnsConfigInput","ofType":null},"defaultValue":null},{"name":"group_by","description":"The group by to apply to the board view","type":{"kind":"INPUT_OBJECT","name":"GroupBySettingsInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ViewKind","description":"Available view types for board displays","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DASHBOARD","description":"Dashboard view for displaying dashboard view","isDeprecated":false,"deprecationReason":null},{"name":"TABLE","description":"Table view for displaying items in a structured table format","isDeprecated":false,"deprecationReason":null},{"name":"FORM","description":"Form view for input and data entry","isDeprecated":false,"deprecationReason":null},{"name":"APP","description":"App view for feature-specific display","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ViewMutationKind","description":"Type of mutation operation","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CREATE","description":"Create operation","isDeprecated":false,"deprecationReason":null},{"name":"UPDATE","description":"Update operation","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Item","description":"An item (table row).","fields":[{"name":"id","description":"The item's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updates","description":"The item's updates.","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"},{"name":"ids","description":"A list of items unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Update","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"assets","description":"The item's assets/files.","args":[{"name":"assets_source","description":"The assets source (all / columns / gallery)","type":{"kind":"ENUM","name":"AssetsSource","ofType":null},"defaultValue":null},{"name":"column_ids","description":"Ids of the columns you want to get assets from.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Asset","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"board","description":"The board that contains this item.","args":[],"type":{"kind":"OBJECT","name":"Board","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"column_values","description":"The item's column values.","args":[{"name":"capabilities","description":"Capabilities supported by the API.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnCapability","ofType":null}}},"defaultValue":null},{"name":"ids","description":"A list of column ids to return","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"types","description":"A list of column types to return","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"ColumnValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The item's create date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The item's creator.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator_id","description":"The unique identifier of the item creator.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The item's description","args":[],"type":{"kind":"OBJECT","name":"ItemDescription","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"The item's email.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"group","description":"The group that contains this item.","args":[],"type":{"kind":"OBJECT","name":"Group","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"linked_items","description":"The item's linked items","args":[{"name":"link_to_item_column_id","description":"The id of the link to item column","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"linked_board_id","description":"The id of the linked board","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Item","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The item's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent_item","description":"The parent item of a subitem.","args":[],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"relative_link","description":"The item's relative path","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The item's state (all / active / archived / deleted).","args":[],"type":{"kind":"ENUM","name":"State","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subitems","description":"The item's subitems.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Item","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscribers","description":"The pulses's subscribers.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The item's last update date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The item's link","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Like","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"reaction_type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MentionType","description":"The type of the mention.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"User","description":"Mention a user","isDeprecated":false,"deprecationReason":null},{"name":"Team","description":"Mention a team","isDeprecated":false,"deprecationReason":null},{"name":"Project","description":"Mention a project","isDeprecated":false,"deprecationReason":null},{"name":"Board","description":"Mention a board","isDeprecated":false,"deprecationReason":null},{"name":"Agent","description":"Mention an AI agent","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Reply","description":"A reply for an update.","fields":[{"name":"id","description":"The reply's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The reply's html formatted body.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator_id","description":"The unique identifier of the reply creator.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"edited_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The reply's creator.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"likes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Like","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_to_top","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePin","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewers","description":null,"args":[{"name":"limit","description":"Number of items to get, the default is 100.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"100"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Watcher","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The reply's creation date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The reply's last edit date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"assets","description":"The reply's assets/files.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Asset","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text_body","description":"The reply's text body.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Update","description":"An update.","fields":[{"name":"id","description":"The update's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":"The update's html formatted body.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator_id","description":"The unique identifier of the update creator.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"edited_at","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The update's creator.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"likes","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Like","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pinned_to_top","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePin","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewers","description":null,"args":[{"name":"limit","description":"Number of items to get, the default is 100.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"100"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Watcher","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The update's creation date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The update's last edit date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item_id","description":"The update's item ID.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"original_creation_date","description":"The original creation time of the update.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":null,"args":[],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"replies","description":"The update's replies.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Reply","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"assets","description":"The update's assets/files.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Asset","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text_body","description":"The update's text body.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateMention","description":null,"fields":null,"inputFields":[{"name":"id","description":"The object id.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"type","description":"The type of the mention.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MentionType","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePin","description":"The pin to top data of the update.","fields":[{"name":"item_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Watcher","description":"The viewer of the update.","fields":[{"name":"user_id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"medium","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":null,"args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CustomActivity","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"icon_id","description":null,"args":[],"type":{"kind":"ENUM","name":"CustomActivityIcon","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"color","description":null,"args":[],"type":{"kind":"ENUM","name":"CustomActivityColor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CustomActivityColor","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"VIVID_CERULEAN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GO_GREEN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PHILIPPINE_GREEN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"YANKEES_BLUE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CELTIC_BLUE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MEDIUM_TURQUOISE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CORNFLOWER_BLUE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MAYA_BLUE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SLATE_BLUE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GRAY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"YELLOW_GREEN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DINGY_DUNGEON","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PARADISE_PINK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"BRINK_PINK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"YELLOW_ORANGE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LIGHT_DEEP_PINK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LIGHT_HOT_PINK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PHILIPPINE_YELLOW","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CustomActivityIcon","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASCENDING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CAMERA","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONFERENCE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FLAG","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"GIFT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HEADPHONES","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"HOMEKEYS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LOCATION","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PAPERPLANE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PLANE","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"NOTEBOOK","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PLIERS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TRIPOD","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"TWOFLAGS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"UTENCILS","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"TimelineItem","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item that the timeline item is on.","args":[],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"board","description":"The board that the timeline item is on.","args":[],"type":{"kind":"OBJECT","name":"Board","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user","description":"The user who created the timeline item.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of the timeline item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"custom_activity_id","description":"The external ID of the custom activity of the timeline item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"content","description":"The content of the timeline item.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The creation date of the timeline item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TimelineItemsPage","description":null,"fields":[{"name":"timeline_items","description":"The timeline items in the current page","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TimelineItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"cursor","description":"Cursor for fetching the next page","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TimelineItemTimeRange","description":null,"fields":null,"inputFields":[{"name":"start_timestamp","description":"Start time","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"defaultValue":null},{"name":"end_timestamp","description":"End time","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TimelineResponse","description":null,"fields":[{"name":"timeline_items_page","description":"Paginated set of timeline items and a cursor to get the next page","args":[{"name":"cursor","description":"The cursor for the next set of timeline items","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"null"},{"name":"limit","description":"The limit for the current page of timeline items","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TimelineItemsPage","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CalculatedCapability","description":"Calculated capability settings for a column","fields":[{"name":"function","description":"Function to calculate the parent values","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CalculatedFunction","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"calculated_type","description":"Type of the calculated value","args":[],"type":{"kind":"ENUM","name":"ColumnType","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CalculatedCapabilityInput","description":"Input for configuring calculated capability settings on a column","fields":null,"inputFields":[{"name":"function","description":"Function to calculate the values. If not provided, will use the default function for the column type.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CalculatedFunction","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"CalculatedFunction","description":"Available functions for calculating values in column capabilities","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"MIN","description":"Calculate the minimum value","isDeprecated":false,"deprecationReason":null},{"name":"MAX","description":"Calculate the maximum value","isDeprecated":false,"deprecationReason":null},{"name":"SUM","description":"Calculate the sum of all values","isDeprecated":false,"deprecationReason":null},{"name":"MIN_MAX","description":"Calculate both minimum and maximum values for time ranges","isDeprecated":false,"deprecationReason":null},{"name":"NONE","description":"No calculation","isDeprecated":false,"deprecationReason":null},{"name":"COUNT_KEYS","description":"Count the number of labels","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Column","description":null,"fields":[{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The column's title.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The column's description.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"width","description":"The column's width.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"archived","description":"Is the column archived or not.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"settings","description":"The column's settings in a JSON form.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings_str","description":"The column's settings in a string form.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":true,"deprecationReason":"From version 2025-10, use settings instead. Will be removed in a future version."},{"name":"revision","description":"The revision of the column (fetch to get latest revision). Used for optimistic concurrency control.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"capabilities","description":"Capabilities available for this column","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ColumnCapabilities","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ColumnCapabilities","description":"Capabilities available for a column","fields":[{"name":"calculated","description":"Calculated capability settings","args":[],"type":{"kind":"OBJECT","name":"CalculatedCapability","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"visibility","description":"Visibility capability settings","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ColumnCapabilitiesInput","description":"Input for configuring column capabilities during creation","fields":null,"inputFields":[{"name":"calculated","description":"Calculated capability settings. If provided, enables calculated functionality for the column.","type":{"kind":"INPUT_OBJECT","name":"CalculatedCapabilityInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ColumnCapability","description":"Capabilities supported by the API","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CALCULATED","description":"Capability to show column's calculated value","isDeprecated":false,"deprecationReason":null},{"name":"VISIBILITY","description":"Capability to mark column as hidden","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"UNION","name":"ColumnSettings","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"StatusColumnSettings","ofType":null},{"kind":"OBJECT","name":"DropdownColumnSettings","ofType":null}]},{"kind":"ENUM","name":"ColumnType","description":"Types of columns supported by the API","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"auto_number","description":"Number items according to their order in the group/board","isDeprecated":false,"deprecationReason":null},{"name":"board_relation","description":"Connect data from other boards","isDeprecated":false,"deprecationReason":null},{"name":"button","description":"Perform actions on items by clicking a button","isDeprecated":false,"deprecationReason":null},{"name":"checkbox","description":"Check off items and see what's done at a glance","isDeprecated":false,"deprecationReason":null},{"name":"color_picker","description":"Manage a design system using a color palette","isDeprecated":false,"deprecationReason":null},{"name":"country","description":"Choose a country","isDeprecated":false,"deprecationReason":null},{"name":"creation_log","description":"Add the item's creator and creation date automatically","isDeprecated":false,"deprecationReason":null},{"name":"date","description":"Add dates like deadlines to ensure you never drop the ball","isDeprecated":false,"deprecationReason":null},{"name":"dependency","description":"Set up dependencies between items in the board","isDeprecated":false,"deprecationReason":null},{"name":"doc","description":"Document your work and increase collaboration","isDeprecated":false,"deprecationReason":null},{"name":"dropdown","description":"Create a dropdown list of options","isDeprecated":false,"deprecationReason":null},{"name":"email","description":"Email team members and clients directly from your board","isDeprecated":false,"deprecationReason":null},{"name":"file","description":"Add files & docs to your item","isDeprecated":false,"deprecationReason":null},{"name":"formula","description":"Use functions to manipulate data across multiple columns","isDeprecated":false,"deprecationReason":null},{"name":"group","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"hour","description":"Add times to manage and schedule tasks, shifts and more","isDeprecated":false,"deprecationReason":null},{"name":"integration","description":"Integration is really cool...","isDeprecated":false,"deprecationReason":null},{"name":"item_assignees","description":"Show all item's assignees","isDeprecated":false,"deprecationReason":null},{"name":"item_id","description":"Show a unique ID for each item","isDeprecated":false,"deprecationReason":null},{"name":"last_updated","description":"Add the person that last updated the item and the date","isDeprecated":false,"deprecationReason":null},{"name":"link","description":"Simply hyperlink to any website","isDeprecated":false,"deprecationReason":null},{"name":"location","description":"Place multiple locations on a geographic map","isDeprecated":false,"deprecationReason":null},{"name":"long_text","description":"Add large amounts of text without changing column width","isDeprecated":false,"deprecationReason":null},{"name":"mirror","description":"Show and edit columns' data from connected boards","isDeprecated":false,"deprecationReason":null},{"name":"numbers","description":"Add revenue, costs, time estimations and more","isDeprecated":false,"deprecationReason":null},{"name":"people","description":"Assign people to improve team work","isDeprecated":false,"deprecationReason":null},{"name":"phone","description":"Call your contacts directly from monday.com","isDeprecated":false,"deprecationReason":null},{"name":"progress","description":"Show progress by combining status columns in a battery","isDeprecated":false,"deprecationReason":null},{"name":"rating","description":"Rate or rank anything visually","isDeprecated":false,"deprecationReason":null},{"name":"status","description":"Get an instant overview of where things stand","isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"Add tags to categorize items across multiple boards","isDeprecated":false,"deprecationReason":null},{"name":"team","description":"Assign a full team to an item ","isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Add textual information e.g. addresses, names or keywords","isDeprecated":false,"deprecationReason":null},{"name":"timeline","description":"Visualize your item’s duration, with a start and end date","isDeprecated":false,"deprecationReason":null},{"name":"time_tracking","description":"Easily track time spent on each item, group, and board","isDeprecated":false,"deprecationReason":null},{"name":"vote","description":"Vote on an item e.g. pick a new feature or a favorite lunch place","isDeprecated":false,"deprecationReason":null},{"name":"week","description":"Select the week on which each item should be completed","isDeprecated":false,"deprecationReason":null},{"name":"world_clock","description":"Keep track of the time anywhere in the world","isDeprecated":false,"deprecationReason":null},{"name":"unsupported","description":"Unsupported column type","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Name is really cool...","isDeprecated":false,"deprecationReason":null},{"name":"person","description":"Assign a person to increase ownership and accountability (deprecated)","isDeprecated":false,"deprecationReason":null},{"name":"direct_doc","description":"Document your work and increase collaboration","isDeprecated":false,"deprecationReason":null},{"name":"subtasks","description":"Use the subtasks column to create another level of tasks","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateDropdownColumnSettingsInput","description":null,"fields":null,"inputFields":[{"name":"labels","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateDropdownLabelInput","ofType":null}}}},"defaultValue":null},{"name":"limit_select","description":"Whether to limit the number of labels that can be selected","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"label_limit_count","description":"Maximum number of labels that can be selected when limit_select is enabled","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateDropdownLabelInput","description":null,"fields":null,"inputFields":[{"name":"label","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateStatusColumnSettingsInput","description":null,"fields":null,"inputFields":[{"name":"labels","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateStatusLabelInput","ofType":null}}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateStatusLabelInput","description":null,"fields":null,"inputFields":[{"name":"label","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"color","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"StatusColumnColors","ofType":null}},"defaultValue":null},{"name":"index","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"is_done","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DropdownColumnSettings","description":null,"fields":[{"name":"type","description":null,"args":[],"type":{"kind":"ENUM","name":"ManagedColumnTypes","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"labels","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DropdownLabel","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DropdownLabel","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"label","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_deactivated","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DropdownManagedColumn","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings_json","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_by","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_by","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revision","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"ENUM","name":"ManagedColumnState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The date and time of creation.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date and time of the last update.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings","description":null,"args":[],"type":{"kind":"OBJECT","name":"DropdownColumnSettings","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DropdownSettingsOverridesInput","description":"Overridable settings for dropdown columns attached to a managed column.","fields":null,"inputFields":[{"name":"limit_select","description":"Whether to limit the number of selectable labels.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"label_limit_count","description":"Maximum number of labels that can be selected when limit_select is enabled.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ManagedColumn","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings_json","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_by","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_by","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revision","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"ENUM","name":"ManagedColumnState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The date and time of creation.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date and time of the last update.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings","description":null,"args":[],"type":{"kind":"UNION","name":"ColumnSettings","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ManagedColumnState","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"active","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"deleted","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"inactive","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ManagedColumnTypes","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"status","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dropdown","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StatusCalculatedCapabilityInput","description":"Input for configuring calculated capability settings on a status column","fields":null,"inputFields":[{"name":"function","description":"Function to calculate the values. For status columns, only COUNT_KEYS function is supported.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"StatusCalculatedFunction","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"StatusCalculatedFunction","description":"Available functions for calculating values in status column capabilities","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"COUNT_KEYS","description":"Count the number of labels","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StatusColumnCapabilitiesInput","description":"Input for configuring status column capabilities during creation","fields":null,"inputFields":[{"name":"calculated","description":"Calculated capability settings. If provided, enables calculated functionality for the status column.","type":{"kind":"INPUT_OBJECT","name":"StatusCalculatedCapabilityInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"StatusColumnColors","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"working_orange","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"done_green","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"stuck_red","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dark_blue","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"purple","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"explosive","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"grass_green","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"bright_blue","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"saladish","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"egg_yolk","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"blackish","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dark_red","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"sofia_pink","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"lipstick","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dark_purple","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"bright_green","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"chili_blue","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"american_gray","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"brown","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dark_orange","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"sunset","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"bubble","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"peach","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"berry","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"winter","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"river","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"navy","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"aquamarine","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"indigo","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dark_indigo","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"pecan","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"lavender","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"royal","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"steel","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"orchid","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"lilac","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"tan","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"sky","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"coffee","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"teal","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"StatusColumnSettings","description":null,"fields":[{"name":"type","description":null,"args":[],"type":{"kind":"ENUM","name":"ManagedColumnTypes","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"labels","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"StatusLabel","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"StatusLabel","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"label","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"color","description":null,"args":[],"type":{"kind":"ENUM","name":"StatusColumnColors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"index","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_deactivated","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_done","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"StatusManagedColumn","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings_json","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_by","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_by","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"revision","description":null,"args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"ENUM","name":"ManagedColumnState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The date and time of creation.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date and time of the last update.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings","description":null,"args":[],"type":{"kind":"OBJECT","name":"StatusColumnSettings","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateDropdownColumnSettingsInput","description":null,"fields":null,"inputFields":[{"name":"labels","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateDropdownLabelInput","ofType":null}}}},"defaultValue":null},{"name":"limit_select","description":"Whether to limit the number of labels that can be selected","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"label_limit_count","description":"Maximum number of labels that can be selected when limit_select is enabled","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateDropdownLabelInput","description":null,"fields":null,"inputFields":[{"name":"label","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"is_deactivated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateStatusColumnSettingsInput","description":null,"fields":null,"inputFields":[{"name":"labels","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateStatusLabelInput","ofType":null}}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateStatusLabelInput","description":null,"fields":null,"inputFields":[{"name":"label","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"color","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"StatusColumnColors","ofType":null}},"defaultValue":null},{"name":"index","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"is_done","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"is_deactivated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RequiredColumns","description":"List of required column IDs for a board","fields":[{"name":"required_column_ids","description":"Array of required column IDs","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Validations","description":null,"fields":[{"name":"required_column_ids","description":"Array of required column IDs","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"rules","description":"Validation rules","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ValidationsEntityType","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"board","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"BoardGraphExport","description":"The complete graph export for a board","fields":[{"name":"boardId","description":"The ID of the board","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"graphData","description":"The graph data structure","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportedAt","description":"The timestamp when the graph was exported","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodeCount","description":"The total number of nodes in the graph","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"edgeCount","description":"The total number of edges in the graph","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"graphAttributes","description":"The attributes of the graph","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"cycles","description":"The cycles in the graph","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DependencyColumnConfig","description":"Configuration record for a dependency column","fields":[{"name":"id","description":"The ID of the configuration record","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"account_id","description":"The account ID","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"board_id","description":"The board ID","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":"Configuration data containing mode and is_new_dependency","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"Creation timestamp","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"Last update timestamp","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"config_type","description":"The type of configuration (always \"dependency\")","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DependencyColumnConfigResult","description":"Result containing dependency column configurations for a board","fields":[{"name":"board_id","description":"The ID of the board","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"dependency_columns","description":"Array of dependency column configurations","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DependencyColumnConfig","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DependencyPulseValueInput","description":"Input type for updating a single pulse dependency value","fields":null,"inputFields":[{"name":"pulseId","description":"The ID of the pulse to update the dependency value for","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"value","description":"The value of the dependency pulse value to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DependencyValueInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DependencyRelation","description":"Type of dependency relationship between items","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"FS","description":"Finish to Start - The dependent item can start only after the predecessor finishes","isDeprecated":false,"deprecationReason":null},{"name":"SS","description":"Start to Finish - The dependent item can finish only after the predecessor starts","isDeprecated":false,"deprecationReason":null},{"name":"FF","description":"Finish to Finish - The dependent item can finish only after the predecessor finishes","isDeprecated":false,"deprecationReason":null},{"name":"SF","description":"Start to Start - The dependent item can start only after the predecessor starts","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DependencyValueInput","description":"Input type for updating dependency column value, supporting both adding and removing dependencies","fields":null,"inputFields":[{"name":"added_pulse","description":"List of pulses to add as dependencies with their configuration","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateDependencyColumnInput","ofType":null}}},"defaultValue":null},{"name":"removed_pulse","description":"List of pulses to remove from dependencies","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateDependencyColumnInput","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Event","description":"A single event record","fields":[{"name":"id","description":"The unique identifier of the event","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The type of the event","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The current state of the event","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"board_id","description":"The ID of the board associated with this event","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"event_data","description":"The event data payload","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"origin_last_updated","description":"The timestamp of the origin last update","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The timestamp when the event was created","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The timestamp when the event was last updated","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EventsExport","description":"Paginated export of events","fields":[{"name":"events","description":"The list of events","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Event","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"The total number of events matching the query","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"limit","description":"The maximum number of events returned","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"offset","description":"The offset from which events are returned","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"MetadataInput","description":"Metadata wrapper containing payload information for dependency configuration","fields":null,"inputFields":[{"name":"payload","description":"The dependency configuration payload containing type and lag settings","type":{"kind":"INPUT_OBJECT","name":"PayloadInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PayloadInput","description":"Input type for dependency metadata payload containing dependency type and lag configuration","fields":null,"inputFields":[{"name":"dependency_type","description":"Type of dependency relationship between the items","type":{"kind":"ENUM","name":"DependencyRelation","ofType":null},"defaultValue":null},{"name":"lag","description":"Number of days offset between the dependent items (can be negative)","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"TimelineDateInput","description":"Input type for timeline dates with from and to date strings","fields":null,"inputFields":[{"name":"id","description":"The ID of the successor pulse whose date should be updated","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"from","description":"Start date of the timeline in ISO format","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"to","description":"End date of the timeline in ISO format","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateDependencyColumnInput","description":"Input type for updating a single dependency relationship between pulses","fields":null,"inputFields":[{"name":"linkedPulseId","description":"The ID of the pulse to create or remove a dependency relationship with","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"metadata","description":"Optional metadata containing dependency configuration (type and lag)","type":{"kind":"INPUT_OBJECT","name":"MetadataInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ArticleBlock","description":"The content blocks that make up the article.","fields":[{"name":"id","description":"The block's unique identifier.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"content","description":"The block's content.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The block's creation date.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_by","description":"The block's creator","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"published_article_id","description":"The unique identifier of the published article that contains this block.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parent_block_id","description":"The block's parent block unique identifier. Will be null if the block is at the top level of the article.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"The block's position on the article.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The block content type.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The block's last updated date.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DocBlocksFromMarkdownResult","description":"Response from adding markdown content to a document. Contains success status and the IDs of newly created blocks.","fields":[{"name":"success","description":"True if markdown was successfully converted and added to the document","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"block_ids","description":"Array of block IDs that were created from the markdown content. Use these IDs to reference or modify the newly created blocks.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"error","description":"Detailed error message if the operation failed. Check this when success is false.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DocKind","description":"The kind/type of document access level","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"private","description":"Private document","isDeprecated":false,"deprecationReason":null},{"name":"public","description":"Public document","isDeprecated":false,"deprecationReason":null},{"name":"share","description":"Shareable document","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Document","description":"Represents a monday.com doc - a rich-text page built from editable blocks (text, files, embeds, etc.).\n  A doc can belong to:\n  (1) a workspace (left-pane doc),\n  (2) an item (doc on column),\n  (3) a board view (doc as a board view).","fields":[{"name":"id","description":"Unique document ID returned when the doc is created.\n  Use this ID in every API call that references the doc.\n  How to find it:\n  • Call the docs() GraphQL query with object_ids to map object_id → id\n  • Enable 'Developer Mode' in monday.labs to display it inside the doc.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"object_id","description":"Identifier that appears in the doc's URL.\n  Returned on creation, but DO NOT use it in API routes that expect a document ID.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"blocks","description":"The document's content blocks","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"DocumentBlock","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The document's creation date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_by","description":"The document's creator","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"doc_folder_id","description":"The document's folder unique identifier (null for first level).","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"doc_kind","description":"The document's kind (public / private / share).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The document's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"relative_url","description":"The document's relative url","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"settings","description":"The document's settings.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The document's last updated date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The document's direct url","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workspace","description":"The workspace that contains this document (null for main workspace).","args":[],"type":{"kind":"OBJECT","name":"Workspace","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workspace_id","description":"The document's workspace unique identifier (null for main workspace).","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DuplicateType","description":"Controls what gets copied when duplicating a document","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"duplicate_doc_with_content","description":"Creates a clean copy with only the document structure and content blocks. Best for creating templates or fresh copies.","isDeprecated":false,"deprecationReason":null},{"name":"duplicate_doc_with_content_and_updates","description":"Creates a complete copy including document structure, content blocks, and all comments/update history. Use for full backups.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportMarkdownResult","description":"Response from exporting document content as markdown. Contains the generated markdown text or error details.","fields":[{"name":"success","description":"True if document content was successfully exported as markdown","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"markdown","description":"The exported markdown content as a string. Ready to use in other systems or save to files.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"error","description":"Detailed error message if the export failed. Check this when success is false.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ImportDocFromHtmlResult","description":"Response from importing an HTML document. Contains success status and the ID of the newly created document.","fields":[{"name":"success","description":"True if HTML was successfully converted and imported as a new document","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"doc_id","description":"The ID of the newly created document. Use this ID to reference or modify the imported document.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"error","description":"Detailed error message if the operation failed. Check this when success is false.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PrivacyKind","description":"The kind/visibility setting of the article (private, public). Determines who can access it.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PRIVATE","description":"Private objects are only visible to specific users who are members of the object.","isDeprecated":false,"deprecationReason":null},{"name":"PUBLIC","description":"Public objects are visible to all users within the account, unless their access is blocked on a higher level in the hierarchy, or by specific object permission.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateFavoriteInput","description":"Input type for adding an object to a hierarchy list","fields":null,"inputFields":[{"name":"object","description":"The object to add to the list","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"HierarchyObjectIDInputType","ofType":null}},"defaultValue":null},{"name":"name","description":"The name of the object","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"newPosition","description":"The position where to add the object","type":{"kind":"INPUT_OBJECT","name":"ObjectDynamicPositionInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateFavoriteResultType","description":"Represents the response when adding an object to a list","fields":[{"name":"favorite","description":"The favorite item that was created","args":[],"type":{"kind":"OBJECT","name":"GraphqlHierarchyObjectItem","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"folder","description":"If the object that was created is a folder, this is extra data about the folder","args":[],"type":{"kind":"OBJECT","name":"GraphqlFolder","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteFavoriteInput","description":"Input type for removing an object from favorites","fields":null,"inputFields":[{"name":"object","description":"The object to remove from favorites","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"HierarchyObjectIDInputType","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteFavoriteInputResultType","description":"Result type for removing an object from favorites","fields":[{"name":"success","description":"Whether the object was successfully removed","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GraphqlFolder","description":"Represents a folder in the hierarchy","fields":[{"name":"id","description":"The unique identifier of the folder","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"accountId","description":"The account identifier this folder belongs to","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the folder","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The timestamp when this folder was created","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"The timestamp when this folder was last updated","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdBy","description":"The user who created this folder","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GraphqlHierarchyObjectItem","description":"Represents an item in favorites","fields":[{"name":"id","description":"The unique identifier of the hierarchy item","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"accountId","description":"The account identifier this item belongs to","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"object","description":"The object identifier and type","args":[],"type":{"kind":"OBJECT","name":"HierarchyObjectID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"folderId","description":"The folder identifier if the item is contained within a folder","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"The position of the item within its list or folder","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":"The timestamp when this item was created","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":"The timestamp when this item was last updated","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"GraphqlMondayObject","description":"Represents a monday object.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Board","description":"A monday.com board","isDeprecated":false,"deprecationReason":null},{"name":"Folder","description":"A monday.com folder","isDeprecated":false,"deprecationReason":null},{"name":"Dashboard","description":"Aggregates data from one or more boards.","isDeprecated":false,"deprecationReason":null},{"name":"Workspace","description":"A monday.com workspace","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"HierarchyObjectID","description":"Represents a monday object identifier with its type","fields":[{"name":"id","description":"The unique identifier of the object","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The type of the object","args":[],"type":{"kind":"ENUM","name":"GraphqlMondayObject","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"HierarchyObjectIDInputType","description":"Input type for identifying a favorites object by its ID and type","fields":null,"inputFields":[{"name":"id","description":"The ID of the object","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"type","description":"The type of the object","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"GraphqlMondayObject","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ObjectDynamicPositionInput","description":null,"fields":null,"inputFields":[{"name":"prevObject","description":"The previous object in the list","type":{"kind":"INPUT_OBJECT","name":"HierarchyObjectIDInputType","ofType":null},"defaultValue":null},{"name":"nextObject","description":"The next object in the list","type":{"kind":"INPUT_OBJECT","name":"HierarchyObjectIDInputType","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateFavoriteResultType","description":"Represents the response when adding an object to a list","fields":[{"name":"favorite","description":"The favorite item that its position was updated","args":[],"type":{"kind":"OBJECT","name":"GraphqlHierarchyObjectItem","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateObjectHierarchyPositionInput","description":null,"fields":null,"inputFields":[{"name":"object","description":"The favorite's object to update","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"HierarchyObjectIDInputType","ofType":null}},"defaultValue":null},{"name":"newFolder","description":"The new folder ID to move the object to, if necessary","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"newPosition","description":"The new position for the object","type":{"kind":"INPUT_OBJECT","name":"ObjectDynamicPositionInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppSubscriptionDetails","description":"Subscription object","fields":[{"name":"account_id","description":"The ID of an account","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"plan_id","description":"The ID of a pricing plan","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pricing_version_id","description":"The ID of a pricing version","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"monthly_price","description":"The monthly price of the product purchased in the given currency, after applying discounts","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"currency","description":"The currency, in which the product was purchased","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"period_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SubscriptionPeriodType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"renewal_date","description":"The date the active subscription is set to renew. Equals to null for inactive subscriptions","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"end_date","description":"The date the the inactive subscription ended. Equals to null for active subscriptions","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SubscriptionStatus","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"discounts","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SubscriptionDiscount","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"days_left","description":"The number of days left until the subscription ends","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"max_units","description":"The subscribed unit quantity. Null for feature-based plans","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppSubscriptions","description":null,"fields":[{"name":"subscriptions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AppSubscriptionDetails","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"total_count","description":"Total number of subscriptions matching the given parameters","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"cursor","description":"The value, which identifies the exact point to continue fetching the subscriptions from","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMarketplaceAppDiscount","description":null,"fields":[{"name":"account_slug","description":"Slug of an account","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"app_id","description":"The id of an app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMarketplaceAppDiscountResult","description":null,"fields":[{"name":"deleted_discount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMarketplaceAppDiscount","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DiscountPeriod","description":"The period of a discount","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"MONTHLY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"YEARLY","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"GrantMarketplaceAppDiscount","description":null,"fields":[{"name":"days_valid","description":"Number of days a discount will be valid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"discount","description":"Percentage value of a discount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_recurring","description":"Is discount recurring","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"period","description":null,"args":[],"type":{"kind":"ENUM","name":"DiscountPeriod","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"app_plan_ids","description":"List of app plan ids","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"app_id","description":"The id of an app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"GrantMarketplaceAppDiscountData","description":null,"fields":null,"inputFields":[{"name":"days_valid","description":"Number of days a discount will be valid","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"discount","description":"Percentage value of a discount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null},{"name":"is_recurring","description":"Is discount recurring","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"period","description":"The period of a discount","type":{"kind":"ENUM","name":"DiscountPeriod","ofType":null},"defaultValue":null},{"name":"app_plan_ids","description":"List of app plan ids","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GrantMarketplaceAppDiscountResult","description":null,"fields":[{"name":"granted_discount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GrantMarketplaceAppDiscount","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"MarketplaceAiSearchInput","description":null,"fields":null,"inputFields":[{"name":"query","description":"The search query term","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"limit","description":"Maximum number of search results to return","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MarketplaceAiSearchResult","description":null,"fields":[{"name":"marketplace_app_id","description":"The ID of the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"match_percentage","description":"How well the app matches the user query (0-100)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"features","description":"List of relevant features that match the user needs","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MarketplaceAiSearchResults","description":null,"fields":[{"name":"results","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceAiSearchResult","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MarketplaceAppDiscount","description":null,"fields":[{"name":"account_slug","description":"Slug of an account","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"account_id","description":"The ID of an account","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"discount","description":"Percentage value of a discount","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_recurring","description":"Is discount recurring","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"app_plan_ids","description":"List of app plan ids","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"period","description":null,"args":[],"type":{"kind":"ENUM","name":"DiscountPeriod","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"valid_until","description":"Date until a discount is valid","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"Date when a discount was created","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MarketplaceAppMetadata","description":null,"fields":[{"name":"rating","description":"The average rating of the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ratingCount","description":"The number of ratings for the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installsCount","description":"The number of installs for the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MarketplaceSearchAppDocument","description":null,"fields":[{"name":"marketplace_app_id","description":"The ID of the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The description of the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"short_description","description":"The short description of the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keywords","description":"The keywords associated with the marketplace app","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"metadata","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceAppMetadata","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MarketplaceSearchHit","description":null,"fields":[{"name":"id","description":"The unique identifier of the search result","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"score","description":"The relevance score of the search result","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Float","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"document","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceSearchAppDocument","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"MarketplaceSearchInput","description":null,"fields":null,"inputFields":[{"name":"query","description":"The search query term","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"limit","description":"Maximum number of search results to return","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"offset","description":"Number of search results to skip","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MarketplaceSearchResults","description":null,"fields":[{"name":"hits","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MarketplaceSearchHit","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"count","description":"The total number of search results","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"elapsed","description":"The time taken to perform the search","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubscriptionDiscount","description":"The discounts granted to the subscription","fields":[{"name":"value","description":"The value of the discount in percentage (e.g. the value 80 refers to 80%)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"discount_model_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SubscriptionDiscountModelType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"discount_type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SubscriptionDiscountType","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SubscriptionDiscountModelType","description":"The information whether the discount is percentage or nominal","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"percent","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"nominal","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"SubscriptionDiscountType","description":"The information whether the discount has been granted one time or recurring","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"recurring","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"one_time","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"SubscriptionPeriodType","description":"The billing period of the subscription. Possible values: monthly, yearly","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"monthly","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"yearly","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"SubscriptionStatus","description":"The status of the subscription. Possible values: active, inactive.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"active","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"inactive","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AppFeatureReleaseDataInput","description":"Input for app feature release data.","fields":null,"inputFields":[{"name":"url","description":"The URL for the release.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AppFeatureReleaseInput","description":"Input for updating an app feature release.","fields":null,"inputFields":[{"name":"kind","description":"The hosting type for the release. The app release category will be automatically determined based on this value.","type":{"kind":"ENUM","name":"AppFeatureReleaseKind","ofType":null},"defaultValue":null},{"name":"data","description":"The data of the release.","type":{"kind":"INPUT_OBJECT","name":"AppFeatureReleaseDataInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AppFeatureReleaseKind","description":"The hosting type for the app feature release","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SERVER_SIDE_CODE","description":"Server-side application hosted on monday code infrastructure","isDeprecated":false,"deprecationReason":null},{"name":"CLIENT_SIDE_CODE","description":"Client-side application deployed via monday.com CLI","isDeprecated":false,"deprecationReason":null},{"name":"EXTERNAL_HOSTING","description":"Externally hosted application loaded via iframe","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AppFeatureType","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the app feature","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"app_id","description":"The app feature app id","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The type of the app feature","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":"The data of the app feature","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deployment","description":"The deployment information for the app feature","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AppFeatureTypeE","description":"The type of the app feature.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"OAUTH","description":"OAUTH","isDeprecated":false,"deprecationReason":null},{"name":"BOARD_VIEW","description":"BOARD_VIEW","isDeprecated":false,"deprecationReason":null},{"name":"INTEGRATION","description":"INTEGRATION","isDeprecated":false,"deprecationReason":null},{"name":"SOLUTION","description":"SOLUTION","isDeprecated":false,"deprecationReason":null},{"name":"ITEM_VIEW","description":"ITEM_VIEW","isDeprecated":false,"deprecationReason":null},{"name":"DASHBOARD_WIDGET","description":"DASHBOARD_WIDGET","isDeprecated":false,"deprecationReason":null},{"name":"ACCOUNT_SETTINGS_VIEW","description":"ACCOUNT_SETTINGS_VIEW","isDeprecated":false,"deprecationReason":null},{"name":"DOC_ACTIONS","description":"DOC_ACTIONS","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"OBJECT","isDeprecated":false,"deprecationReason":null},{"name":"WORKSPACE_VIEW","description":"WORKSPACE_VIEW","isDeprecated":false,"deprecationReason":null},{"name":"AI","description":"AI","isDeprecated":false,"deprecationReason":null},{"name":"AI_BOARD_MAIN_MENU_HEADER","description":"AI_BOARD_MAIN_MENU_HEADER","isDeprecated":false,"deprecationReason":null},{"name":"AI_ITEM_UPDATE_ACTIONS","description":"AI_ITEM_UPDATE_ACTIONS","isDeprecated":false,"deprecationReason":null},{"name":"AI_DOC_SLASH_COMMAND","description":"AI_DOC_SLASH_COMMAND","isDeprecated":false,"deprecationReason":null},{"name":"AI_DOC_CONTEXTUAL_MENU","description":"AI_DOC_CONTEXTUAL_MENU","isDeprecated":false,"deprecationReason":null},{"name":"AI_DOC_QUICK_START","description":"AI_DOC_QUICK_START","isDeprecated":false,"deprecationReason":null},{"name":"AI_DOC_TOP_BAR","description":"AI_DOC_TOP_BAR","isDeprecated":false,"deprecationReason":null},{"name":"COLUMN_TEMPLATE","description":"COLUMN_TEMPLATE","isDeprecated":false,"deprecationReason":null},{"name":"AI_IC_ASSISTANT_HELP_CENTER","description":"AI_IC_ASSISTANT_HELP_CENTER","isDeprecated":false,"deprecationReason":null},{"name":"APP_WIZARD","description":"APP_WIZARD","isDeprecated":false,"deprecationReason":null},{"name":"GROUP_MENU_ACTION","description":"GROUP_MENU_ACTION","isDeprecated":false,"deprecationReason":null},{"name":"ITEM_MENU_ACTION","description":"ITEM_MENU_ACTION","isDeprecated":false,"deprecationReason":null},{"name":"NOTIFICATION_KIND","description":"NOTIFICATION_KIND","isDeprecated":false,"deprecationReason":null},{"name":"NOTIFICATION_SETTING_KIND","description":"NOTIFICATION_SETTING_KIND","isDeprecated":false,"deprecationReason":null},{"name":"BLOCK","description":"BLOCK","isDeprecated":false,"deprecationReason":null},{"name":"ITEM_BATCH_ACTION","description":"ITEM_BATCH_ACTION","isDeprecated":false,"deprecationReason":null},{"name":"AI_FORMULA","description":"AI_FORMULA","isDeprecated":false,"deprecationReason":null},{"name":"AI_ITEM_EMAILS_AND_ACTIVITIES_ACTIONS","description":"AI_ITEM_EMAILS_AND_ACTIVITIES_ACTIONS","isDeprecated":false,"deprecationReason":null},{"name":"AI_EMAILS_AND_ACTIVITIES_HEADER_ACTIONS","description":"AI_EMAILS_AND_ACTIVITIES_HEADER_ACTIONS","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_TYPE","description":"FIELD_TYPE","isDeprecated":false,"deprecationReason":null},{"name":"PRODUCT","description":"PRODUCT","isDeprecated":false,"deprecationReason":null},{"name":"PRODUCT_VIEW","description":"PRODUCT_VIEW","isDeprecated":false,"deprecationReason":null},{"name":"BOARD_COLUMN_ACTION","description":"BOARD_COLUMN_ACTION","isDeprecated":false,"deprecationReason":null},{"name":"BOARD_COLUMN_EXTENSION","description":"BOARD_COLUMN_EXTENSION","isDeprecated":false,"deprecationReason":null},{"name":"PACKAGED_BLOCK","description":"PACKAGED_BLOCK","isDeprecated":false,"deprecationReason":null},{"name":"CREDENTIALS","description":"CREDENTIALS","isDeprecated":false,"deprecationReason":null},{"name":"TOPBAR","description":"TOPBAR","isDeprecated":false,"deprecationReason":null},{"name":"WORKFLOW_TEMPLATE","description":"WORKFLOW_TEMPLATE","isDeprecated":false,"deprecationReason":null},{"name":"COLUMN","description":"COLUMN","isDeprecated":false,"deprecationReason":null},{"name":"SUB_WORKFLOW","description":"SUB_WORKFLOW","isDeprecated":false,"deprecationReason":null},{"name":"BOARD_HEADER_ACTION","description":"BOARD_HEADER_ACTION","isDeprecated":false,"deprecationReason":null},{"name":"DIALOG","description":"DIALOG","isDeprecated":false,"deprecationReason":null},{"name":"DATA_ENTITY","description":"DATA_ENTITY","isDeprecated":false,"deprecationReason":null},{"name":"SYNCABLE_RESOURCE","description":"SYNCABLE_RESOURCE","isDeprecated":false,"deprecationReason":null},{"name":"AI_AGENT","description":"AI_AGENT","isDeprecated":false,"deprecationReason":null},{"name":"SURFACE_VIEW","description":"SURFACE_VIEW","isDeprecated":false,"deprecationReason":null},{"name":"GROWTH_CONFIG","description":"GROWTH_CONFIG","isDeprecated":false,"deprecationReason":null},{"name":"MODAL","description":"MODAL","isDeprecated":false,"deprecationReason":null},{"name":"ADMIN_VIEW","description":"ADMIN_VIEW","isDeprecated":false,"deprecationReason":null},{"name":"DIGITAL_WORKER","description":"DIGITAL_WORKER","isDeprecated":false,"deprecationReason":null},{"name":"AI_AGENT_SKILL","description":"AI_AGENT_SKILL","isDeprecated":false,"deprecationReason":null},{"name":"SKILL","description":"SKILL","isDeprecated":false,"deprecationReason":null},{"name":"VIBE_OBJECT","description":"VIBE_OBJECT","isDeprecated":false,"deprecationReason":null},{"name":"VIBE_ITEM_VIEW","description":"VIBE_ITEM_VIEW","isDeprecated":false,"deprecationReason":null},{"name":"AI_PLATFORM_AGENT","description":"AI_PLATFORM_AGENT","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"AppKind","description":"The visibility type of an app","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PRIVATE","description":"App is private and only visible to the account that created it","isDeprecated":false,"deprecationReason":null},{"name":"PUBLIC","description":"App is public and can be shared and installed by other accounts","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"AppPermission","description":"Permitted OAuth scopes for apps","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ME_READ","description":"Permission scope: me:read","isDeprecated":false,"deprecationReason":null},{"name":"BOARDS_READ","description":"Permission scope: boards:read","isDeprecated":false,"deprecationReason":null},{"name":"BOARDS_WRITE","description":"Permission scope: boards:write","isDeprecated":false,"deprecationReason":null},{"name":"WORKSPACES_READ","description":"Permission scope: workspaces:read","isDeprecated":false,"deprecationReason":null},{"name":"WORKSPACES_WRITE","description":"Permission scope: workspaces:write","isDeprecated":false,"deprecationReason":null},{"name":"USERS_READ","description":"Permission scope: users:read","isDeprecated":false,"deprecationReason":null},{"name":"USERS_WRITE","description":"Permission scope: users:write","isDeprecated":false,"deprecationReason":null},{"name":"ACCOUNT_READ","description":"Permission scope: account:read","isDeprecated":false,"deprecationReason":null},{"name":"UPDATES_READ","description":"Permission scope: updates:read","isDeprecated":false,"deprecationReason":null},{"name":"UPDATES_WRITE","description":"Permission scope: updates:write","isDeprecated":false,"deprecationReason":null},{"name":"TAGS_READ","description":"Permission scope: tags:read","isDeprecated":false,"deprecationReason":null},{"name":"ASSETS_READ","description":"Permission scope: assets:read","isDeprecated":false,"deprecationReason":null},{"name":"TEAMS_READ","description":"Permission scope: teams:read","isDeprecated":false,"deprecationReason":null},{"name":"TEAMS_WRITE","description":"Permission scope: teams:write","isDeprecated":false,"deprecationReason":null},{"name":"DEPARTMENTS_READ","description":"Permission scope: departments:read","isDeprecated":false,"deprecationReason":null},{"name":"DEPARTMENTS_WRITE","description":"Permission scope: departments:write","isDeprecated":false,"deprecationReason":null},{"name":"NOTIFICATIONS_WRITE","description":"Permission scope: notifications:write","isDeprecated":false,"deprecationReason":null},{"name":"WEBHOOKS_WRITE","description":"Permission scope: webhooks:write","isDeprecated":false,"deprecationReason":null},{"name":"WEBHOOKS_READ","description":"Permission scope: webhooks:read","isDeprecated":false,"deprecationReason":null},{"name":"DOCS_READ","description":"Permission scope: docs:read","isDeprecated":false,"deprecationReason":null},{"name":"DOCS_WRITE","description":"Permission scope: docs:write","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"AppStatus","description":"The current state of an app based on its version status","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DRAFT","description":"App is in draft state and not yet published","isDeprecated":false,"deprecationReason":null},{"name":"LIVE","description":"App has a live published version","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AppType","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":null,"args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The app name","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"api_app_id","description":"The API app ID","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"client_id","description":"The API app ID","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"photo_url","description":"The app photo URL","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"photo_url_small","description":"The app photo URL for small size","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The app kind","args":[],"type":{"kind":"ENUM","name":"AppKind","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"The app status (i.e. is live?)","args":[],"type":{"kind":"ENUM","name":"AppStatus","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"version_type","description":"The latest version type","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The description of the app","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The URL-friendly identifier","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"permissions","description":"The array of permission scopes","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"webhook_url","description":"The webhook endpoint URL","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_by","description":"The user who created the app","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"account_id","description":"The app account ID","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"collaborators","description":"The app collaborators","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"features","description":"The apps' features","args":[{"name":"live_version_only","description":"Whether to return only the live version data instead of all versions","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"},{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AppFeatureType","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAppInput","description":"Input for creating an app with its configuration data.","fields":null,"inputFields":[{"name":"name","description":"The display name of the app","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"kind","description":"App visibility type","type":{"kind":"ENUM","name":"AppKind","ofType":null},"defaultValue":null},{"name":"description","description":"Detailed description of the app","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"slug","description":"URL-friendly identifier in the format {account_slug}_{app_slug}. Must contain only letters, numbers, dashes, and underscores. Example: \"account-slug_my-scheduler\"","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"permissions","description":"Array of permission scopes","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AppPermission","ofType":null}}},"defaultValue":null},{"name":"webhook_url","description":"Webhook endpoint URL","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"collaborators","description":"Array of user IDs with access","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAppResponse","description":"Response object for app creation operations, including app data and API credentials","fields":[{"name":"id","description":"The app's ID","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"api_app_id","description":"The app's API app ID","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"client_id","description":"The app's client ID","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"client_secret","description":"The app's client secret","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"signing_secret","description":"The app's signing secret used for webhook signature verification","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateAppFeatureInput","description":"Input for updating an app feature with its associated data and release information.","fields":null,"inputFields":[{"name":"data","description":"The app feature data to update. This structure is dynamic and depends on the different app feature types.","type":{"kind":"SCALAR","name":"JSON","ofType":null},"defaultValue":null},{"name":"deployment","description":"The deployment data to update. https://developer.monday.com/apps/docs/deploy-your-app","type":{"kind":"INPUT_OBJECT","name":"AppFeatureReleaseInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateAppInput","description":"Input for updating an existing app. Creates draft version for live apps.","fields":null,"inputFields":[{"name":"name","description":"The display name of the app","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"kind","description":"App visibility type","type":{"kind":"ENUM","name":"AppKind","ofType":null},"defaultValue":null},{"name":"description","description":"Detailed description of the app","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"slug","description":"URL-friendly identifier (only settable if app has no existing slug)","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"permissions","description":"Array of permission scopes (replaces existing permissions)","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AppPermission","ofType":null}}},"defaultValue":null},{"name":"webhook_url","description":"Webhook endpoint URL","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"collaborators","description":"Array of user IDs with access (replaces existing collaborators)","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Account","description":"Your monday.com account","fields":[{"name":"active_members_count","description":"The number of active member users in the account","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"country_code","description":"The account's country two-letter code in ISO3166 format","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The account's creation date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"first_day_of_the_week","description":"The first day of the week for the account (sunday / monday)","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FirstDayOfTheWeek","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The account's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_during_trial","description":"Is the account during the free trial period","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_trial_expired","description":"Is the account's trial expired","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"logo","description":"The account's logo.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The account's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"plan","description":"The account's payment plan.","args":[],"type":{"kind":"OBJECT","name":"Plan","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"products","description":"The account's active products","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"AccountProduct","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show_timeline_weekends","description":"Show weekends in timeline","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"sign_up_product_kind","description":"The product the account signed up to first.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"slug","description":"The account's slug.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"tier","description":"The account's tier.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AccountProduct","description":"The product a workspace is used in.","fields":[{"name":"default_workspace_id","description":"The account product default workspace id","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The account product id","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The account product kind (core / marketing / crm / software /\nprojectManagement / project_management / service / forms / whiteboard).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tier","description":"The account product tier.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ActivityLogType","description":"An activity log event","fields":[{"name":"account_id","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"data","description":"The item's column values in string form.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entity","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"event","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppInstall","description":"An app install details.","fields":[{"name":"app_id","description":"The app's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"app_install_account","description":"An app installer's account details.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AppInstallAccount","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"app_install_user","description":"An app installer's user details","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AppInstallUser","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"app_version","description":"The app's version details","args":[],"type":{"kind":"OBJECT","name":"AppVersion","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"permissions","description":"The required and approved scopes for an app install.","args":[],"type":{"kind":"OBJECT","name":"AppInstallPermissions","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timestamp","description":"Installation date","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppInstallAccount","description":"An app installer's account details","fields":[{"name":"id","description":"The app's installer account id.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppInstallPermissions","description":"The required and approved scopes for an app install.","fields":[{"name":"approved_scopes","description":"The scopes approved by the account admin","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"required_scopes","description":"The scopes required by the latest live version","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppInstallUser","description":"An app installer's user details","fields":[{"name":"id","description":"The app's installer user id.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppMonetizationStatus","description":"The app monetization status for the current account","fields":[{"name":"is_supported","description":"Is apps monetization is supported for the account","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppsMonetizationInfo","description":"The app monetization information for the current account","fields":[{"name":"seats_count","description":"The number of seats in the account, across all products, used to match the\napp’s subscription among apps that utilize the seats-based monetization method","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppSubscription","description":"The account subscription details for the app.","fields":[{"name":"billing_period","description":"The type of the billing period [monthly/yearly].","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"days_left","description":"The number of days left until the subscription ends.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_trial","description":"Is the subscription a trial","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"max_units","description":"Maximum number of units for current subscription plan.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"plan_id","description":"The subscription plan id (on the app's side).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pricing_version","description":"The pricing version of subscription plan.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"renewal_date","description":"The subscription renewal date.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppSubscriptionOperationsCounter","description":"The Operations counter response for the app action.","fields":[{"name":"app_subscription","description":"The account subscription details for the app.","args":[],"type":{"kind":"OBJECT","name":"AppSubscription","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"counter_value","description":"The new counter value.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"Operations name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"period_key","description":"Window key.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AppVersion","description":"An app's version details.","fields":[{"name":"major","description":"The app's major version.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"minor","description":"The app's minor version.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"patch","description":"The app's patch version.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"The app's version text","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The app's version type.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Asset","description":"A file uploaded to monday.com","fields":[{"name":"created_at","description":"The file's creation date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"file_extension","description":"The file's extension.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"file_size","description":"The file's size in bytes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The file's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The file's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"original_geometry","description":"original geometry of the asset.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"public_url","description":"public url to the asset, valid for 1 hour.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"uploaded_by","description":"The user who uploaded the file.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"url to view the asset.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url_thumbnail","description":"url to view the asset in thumbnail mode. Only available for images.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AssetsSource","description":"The source of the asset","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"all","description":"Assets from file columns and item's files gallery. From version 2026-04, also includes assets from updates","isDeprecated":false,"deprecationReason":null},{"name":"columns","description":"Assets only from file columns","isDeprecated":false,"deprecationReason":null},{"name":"gallery","description":"Assets only from item's files gallery","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"BatchExtendTrialPeriod","description":"Result of an batch operation","fields":[{"name":"details","description":"Details of operations","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ExtendTrialPeriod","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"reason","description":"Reason of an error","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Result of a batch operation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BatteryValue","description":"A value showing status distribution counts","fields":[{"name":"battery_value","description":"The battery value for this item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"BatteryValueItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BatteryValueItem","description":"A battery value item representing a status count","fields":[{"name":"count","description":"The count for this status","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"key","description":"The status index key","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BoardAccessLevel","description":"The board access level of the user","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"edit","description":"Edit contents","isDeprecated":false,"deprecationReason":null},{"name":"view","description":"View","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BoardAttributes","description":"The board attributes available.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"communication","description":"Object that contains available Video conferences on the board.","isDeprecated":false,"deprecationReason":null},{"name":"description","description":"Board description.","isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Board name.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BoardBasicRoleName","description":"Basic role names for board permissions. Each role grants different levels of access to the board.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"assigned_contributor","description":"Assigned Contributor role - Can edit content (items) only, and only for items\nwhere they are assigned in the specified assignee columns (Coming soon - not\nyet supported, please use the UI instead)","isDeprecated":false,"deprecationReason":null},{"name":"contributor","description":"Contributor role - Can edit content (items) only, but not the structure (columns, groups) of the board","isDeprecated":false,"deprecationReason":null},{"name":"editor","description":"Editor role - Can edit both the structure (columns, groups) and content (items) of the board","isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":"Viewer role - Read-only access to the board, cannot edit structure or content","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"BoardDuplication","description":"A board duplication","fields":[{"name":"board","description":"The new board created by the duplication","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Board","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_async","description":"Was the board duplication performed asynchronously","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BoardEditPermissions","description":"Edit permissions level for boards.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"assignee","description":"Assignee","isDeprecated":false,"deprecationReason":null},{"name":"collaborators","description":"Collaborators","isDeprecated":false,"deprecationReason":null},{"name":"everyone","description":"Everyone","isDeprecated":false,"deprecationReason":null},{"name":"owners","description":"Owners","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BoardHierarchy","description":"The board hierarchy type","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"classic","description":"classic","isDeprecated":false,"deprecationReason":null},{"name":"multi_level","description":"multilevel of items","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BoardKind","description":"The board kinds available.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"private","description":"Private boards.","isDeprecated":false,"deprecationReason":null},{"name":"public","description":"Public boards.","isDeprecated":false,"deprecationReason":null},{"name":"share","description":"Shareable boards.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BoardObjectType","description":"The board object types.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"board","description":"Parent Board.","isDeprecated":false,"deprecationReason":null},{"name":"custom_object","description":"Custom Object.","isDeprecated":false,"deprecationReason":null},{"name":"document","description":"Document.","isDeprecated":false,"deprecationReason":null},{"name":"sub_items_board","description":"Sub Items Board.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"BoardRelationValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"display_value","description":"A string representing all the names of the linked items, separated by commas","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"linked_item_ids","description":"The linked items IDs","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"linked_items","description":"The linked items.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Item","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BoardsOrderBy","description":"Options to order by.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"The rank order of the board creation time (desc).","isDeprecated":false,"deprecationReason":null},{"name":"used_at","description":"The last time the user making the request used the board (desc).","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"BoardSubscriberKind","description":"The board subscriber kind.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"owner","description":"Board owner.","isDeprecated":false,"deprecationReason":null},{"name":"subscriber","description":"Board subscriber.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ButtonValue","description":null,"fields":[{"name":"color","description":"The button's color in hex value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"label","description":"The button's label.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ChangeTeamMembershipsResult","description":"The result of adding users to / removing users from a team.","fields":[{"name":"failed_users","description":"The users that team membership update failed for","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"successful_users","description":"The users that team membership update succeeded for","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CheckboxValue","description":null,"fields":[{"name":"checked","description":"The column's boolean value.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ColorPickerValue","description":null,"fields":[{"name":"color","description":"The color in hex value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ColumnMappingInput","description":"An object defining a mapping of column between source board and destination board","fields":null,"inputFields":[{"name":"source","description":"The source column's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"target","description":"The target column's unique identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ColumnProperty","description":"The property name of the column to be changed.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"description","description":"the column description.","isDeprecated":false,"deprecationReason":null},{"name":"title","description":"the column title.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"ColumnValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"BatteryValue","ofType":null},{"kind":"OBJECT","name":"BoardRelationValue","ofType":null},{"kind":"OBJECT","name":"ButtonValue","ofType":null},{"kind":"OBJECT","name":"CheckboxValue","ofType":null},{"kind":"OBJECT","name":"ColorPickerValue","ofType":null},{"kind":"OBJECT","name":"CountryValue","ofType":null},{"kind":"OBJECT","name":"CreationLogValue","ofType":null},{"kind":"OBJECT","name":"DateValue","ofType":null},{"kind":"OBJECT","name":"DependencyValue","ofType":null},{"kind":"OBJECT","name":"DirectDocValue","ofType":null},{"kind":"OBJECT","name":"DocValue","ofType":null},{"kind":"OBJECT","name":"DropdownValue","ofType":null},{"kind":"OBJECT","name":"EmailValue","ofType":null},{"kind":"OBJECT","name":"FileValue","ofType":null},{"kind":"OBJECT","name":"FormulaValue","ofType":null},{"kind":"OBJECT","name":"GroupValue","ofType":null},{"kind":"OBJECT","name":"HourValue","ofType":null},{"kind":"OBJECT","name":"IntegrationValue","ofType":null},{"kind":"OBJECT","name":"ItemIdValue","ofType":null},{"kind":"OBJECT","name":"LastUpdatedValue","ofType":null},{"kind":"OBJECT","name":"LinkValue","ofType":null},{"kind":"OBJECT","name":"LocationValue","ofType":null},{"kind":"OBJECT","name":"LongTextValue","ofType":null},{"kind":"OBJECT","name":"MirrorValue","ofType":null},{"kind":"OBJECT","name":"NumbersValue","ofType":null},{"kind":"OBJECT","name":"PeopleValue","ofType":null},{"kind":"OBJECT","name":"PersonValue","ofType":null},{"kind":"OBJECT","name":"PhoneValue","ofType":null},{"kind":"OBJECT","name":"ProgressValue","ofType":null},{"kind":"OBJECT","name":"RatingValue","ofType":null},{"kind":"OBJECT","name":"StatusValue","ofType":null},{"kind":"OBJECT","name":"SubtasksValue","ofType":null},{"kind":"OBJECT","name":"TagsValue","ofType":null},{"kind":"OBJECT","name":"TeamValue","ofType":null},{"kind":"OBJECT","name":"TextValue","ofType":null},{"kind":"OBJECT","name":"TimelineValue","ofType":null},{"kind":"OBJECT","name":"TimeTrackingValue","ofType":null},{"kind":"OBJECT","name":"UnsupportedValue","ofType":null},{"kind":"OBJECT","name":"VoteValue","ofType":null},{"kind":"OBJECT","name":"WeekValue","ofType":null},{"kind":"OBJECT","name":"WorldClockValue","ofType":null}]},{"kind":"OBJECT","name":"Complexity","description":"Complexity data.","fields":[{"name":"after","description":"The remainder of complexity after the query's execution.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"before","description":"The remainder of complexity before the query's execution.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"query","description":"The specific query's complexity.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reset_in_x_seconds","description":"How long in seconds before the complexity budget is reset","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Country","description":null,"fields":[{"name":"code","description":"The country's two-letter code.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The country's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CountryValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"country","description":"The country value.","args":[],"type":{"kind":"OBJECT","name":"Country","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateDocBoardInput","description":null,"fields":null,"inputFields":[{"name":"column_id","description":"Column id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"item_id","description":"Item id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateDocInput","description":null,"fields":null,"inputFields":[{"name":"board","description":null,"type":{"kind":"INPUT_OBJECT","name":"CreateDocBoardInput","ofType":null},"defaultValue":null},{"name":"workspace","description":null,"type":{"kind":"INPUT_OBJECT","name":"CreateDocWorkspaceInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateDocWorkspaceInput","description":null,"fields":null,"inputFields":[{"name":"folder_id","description":"Optional board folder id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"kind","description":"The doc's kind (public / private / share)","type":{"kind":"ENUM","name":"BoardKind","ofType":null},"defaultValue":null},{"name":"name","description":"The doc's name","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"workspace_id","description":"Workspace id","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreationLogValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The date when the item was created.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"User who created the item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator_id","description":"ID of the user who created the item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CustomFieldMetas","description":"The custom fields meta data for user profile.","fields":[{"name":"description","description":"The custom field meta's description.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editable","description":"Is the custom field meta editable or not.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"field_type","description":"The custom field meta's type.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"flagged","description":"Is the custom field meta flagged or not.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"icon","description":"The custom field meta's icon.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The custom field meta's unique identifier.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"The custom field meta's position in the user profile page.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The custom field meta's title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CustomFieldValue","description":"A custom field value for user profile.","fields":[{"name":"custom_field_meta_id","description":"The custom field value's meta unique identifier.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The custom field value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DateValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"date","description":"The column's date value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"icon","description":"The string representation of selected icon.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"The formatted date and time in user time zone.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"time","description":"The column's time value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DependencyValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"display_value","description":"A string representing all the names of the linked items, separated by commas","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"linked_item_ids","description":"The linked items ids","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"linked_items","description":"The linked items.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Item","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DirectDocValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"file","description":"The document file attached to the column.","args":[],"type":{"kind":"OBJECT","name":"DirectDocValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DocBlockContentType","description":"Various documents blocks types, such as text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"bulleted_list","description":"Bulleted list block","isDeprecated":false,"deprecationReason":null},{"name":"check_list","description":"Check list block","isDeprecated":false,"deprecationReason":null},{"name":"code","description":"Code block","isDeprecated":false,"deprecationReason":null},{"name":"divider","description":"Divider block","isDeprecated":false,"deprecationReason":null},{"name":"image","description":"Image block","isDeprecated":false,"deprecationReason":null},{"name":"large_title","description":"Large title block","isDeprecated":false,"deprecationReason":null},{"name":"layout","description":"Layout block","isDeprecated":false,"deprecationReason":null},{"name":"medium_title","description":"Medium title block","isDeprecated":false,"deprecationReason":null},{"name":"normal_text","description":"Simple text block","isDeprecated":false,"deprecationReason":null},{"name":"notice_box","description":"Notice block","isDeprecated":false,"deprecationReason":null},{"name":"numbered_list","description":"Numbered list block","isDeprecated":false,"deprecationReason":null},{"name":"page_break","description":"Page break block","isDeprecated":false,"deprecationReason":null},{"name":"quote","description":"Quote text block","isDeprecated":false,"deprecationReason":null},{"name":"small_title","description":"Small title block","isDeprecated":false,"deprecationReason":null},{"name":"table","description":"Table block","isDeprecated":false,"deprecationReason":null},{"name":"video","description":"Video block","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"DocsOrderBy","description":"Options to order by.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"The rank order of the document creation time (desc).","isDeprecated":false,"deprecationReason":null},{"name":"used_at","description":"The last time the user making the request viewd the document (desc).","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"DocumentBlock","description":"A monday.com document block.","fields":[{"name":"content","description":"The block's content.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The block's creation date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_by","description":"The block's creator","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"doc_id","description":"The block's document unique identifier.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The block's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent_block_id","description":"The block's parent block unique identifier.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"The block's position on the document.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The block content type.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The block's last updated date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DocumentBlockIdOnly","description":"A monday.com doc block.","fields":[{"name":"id","description":"The block's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DocValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"file","description":"The document file attached to the column.","args":[],"type":{"kind":"OBJECT","name":"FileDocValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DropdownValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"values","description":"The selected dropdown values.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DropdownValueOption","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DropdownValueOption","description":null,"fields":[{"name":"id","description":"The dropdown item's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"label","description":"The dropdown item's label.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DuplicateBoardType","description":"The board duplicate types available.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"duplicate_board_with_pulses","description":"Duplicate board with structure and items.","isDeprecated":false,"deprecationReason":null},{"name":"duplicate_board_with_pulses_and_updates","description":"Duplicate board with structure, items and updates.","isDeprecated":false,"deprecationReason":null},{"name":"duplicate_board_with_structure","description":"Duplicate board with structure.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DynamicPosition","description":null,"fields":null,"inputFields":[{"name":"is_after","description":"A boolean flag indicating the desired position of the target item: set to true\nto place the item after the reference object, or false to place it before.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"true"},{"name":"object_id","description":"The unique identifier of the reference object relative to which the target item will be positioned.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"object_type","description":"The type or category of the reference object, used to determine how the target\nitem should be positioned in relation to it.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ObjectType","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EmailValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"The column's email value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"label","description":"The column's text value. It can be the same as email when user didn't enter any text.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ExtendTrialPeriod","description":"Result of a single operation","fields":[{"name":"account_slug","description":"Account slug","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reason","description":"Reason of an error","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Result of a single operation","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FileAssetInvalidValue","description":"A file with an invalid or missing asset.","fields":[{"name":"asset_id","description":"The asset's id.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The file's creation date.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The user who created the file.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator_id","description":"The ID of user who created the file.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"error","description":"The error message.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The file's name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FileAssetValue","description":null,"fields":[{"name":"asset","description":"The asset associated with the file.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Asset","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"asset_id","description":"The asset's id.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The file's creation date.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The user who created the file.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator_id","description":"The ID of user who created the file.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_image","description":"Whether the file is an image.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The file's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FileColumnValue","description":"The type of a link value stored inside a file column","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"asset","description":"Asset file","isDeprecated":false,"deprecationReason":null},{"name":"box","description":"Box file","isDeprecated":false,"deprecationReason":null},{"name":"doc","description":"Doc file","isDeprecated":false,"deprecationReason":null},{"name":"dropbox","description":"Dropbox file","isDeprecated":false,"deprecationReason":null},{"name":"google_drive","description":"Google Drive file","isDeprecated":false,"deprecationReason":null},{"name":"link","description":"Generic link file","isDeprecated":false,"deprecationReason":null},{"name":"onedrive","description":"OneDrive file","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FileDocValue","description":null,"fields":[{"name":"created_at","description":"The file's creation date.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The user who created the file.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator_id","description":"The ID of user who created the file.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"doc","description":"The doc associated with the file.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Document","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"file_id","description":"The file's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"object_id","description":"The associated board or object's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The file's url.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FileInput","description":null,"fields":null,"inputFields":[{"name":"assetId","description":"The asset's id.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"fileType","description":"File kind","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FileColumnValue","ofType":null}},"defaultValue":null},{"name":"linkToFile","description":"File link","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"name","description":"File display name","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"objectId","description":"The doc's id","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FileLinkValue","description":null,"fields":[{"name":"created_at","description":"The file's creation date.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The user who created the file.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator_id","description":"The ID of user who created the file.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"file_id","description":"The file's id.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The file's kind.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FileLinkValueKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The file's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The file's url.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FileLinkValueKind","description":"The type of a link value stored inside a file column","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"box","description":"Box file","isDeprecated":false,"deprecationReason":null},{"name":"dropbox","description":"Dropbox file","isDeprecated":false,"deprecationReason":null},{"name":"google_drive","description":"Google Drive file","isDeprecated":false,"deprecationReason":null},{"name":"link","description":"Generic link file","isDeprecated":false,"deprecationReason":null},{"name":"onedrive","description":"OneDrive file","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FileValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"files","description":"The files attached to the column.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"UNION","name":"FileValueItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"FileValueItem","description":"A single file in a column.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"FileAssetInvalidValue","ofType":null},{"kind":"OBJECT","name":"FileAssetValue","ofType":null},{"kind":"OBJECT","name":"FileDocValue","ofType":null},{"kind":"OBJECT","name":"FileLinkValue","ofType":null}]},{"kind":"ENUM","name":"FirstDayOfTheWeek","description":"The first day of work week","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"monday","description":"Monday","isDeprecated":false,"deprecationReason":null},{"name":"sunday","description":"Sunday","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Folder","description":"A workspace folder containing boards, docs, sub folders, etc.","fields":[{"name":"children","description":"The various items in the folder, not including sub-folders and dashboards.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Board","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"color","description":"The folder's color.","args":[],"type":{"kind":"ENUM","name":"FolderColor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The folder's creation date.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"custom_icon","description":"The folder's custom icon.","args":[],"type":{"kind":"ENUM","name":"FolderCustomIcon","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"font_weight","description":"The folder's font weight.","args":[],"type":{"kind":"ENUM","name":"FolderFontWeight","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The folder's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The folder's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"owner_id","description":"The folder's user owner unique identifier.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":"The folder's parent folder.","args":[],"type":{"kind":"OBJECT","name":"Folder","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"sub_folders","description":"Sub-folders inside this folder.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Folder","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"workspace","description":"The workspace that contains this folder (null id for main workspace).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Workspace","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FolderColor","description":"One value out of a list of valid folder colors","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AQUAMARINE","description":"aquamarine","isDeprecated":false,"deprecationReason":null},{"name":"BRIGHT_BLUE","description":"bright-blue","isDeprecated":false,"deprecationReason":null},{"name":"BRIGHT_GREEN","description":"bright-green","isDeprecated":false,"deprecationReason":null},{"name":"CHILI_BLUE","description":"chili-blue","isDeprecated":false,"deprecationReason":null},{"name":"DARK_ORANGE","description":"dark-orange","isDeprecated":false,"deprecationReason":null},{"name":"DARK_PURPLE","description":"dark_purple","isDeprecated":false,"deprecationReason":null},{"name":"DARK_RED","description":"dark-red","isDeprecated":false,"deprecationReason":null},{"name":"DONE_GREEN","description":"done-green","isDeprecated":false,"deprecationReason":null},{"name":"INDIGO","description":"indigo","isDeprecated":false,"deprecationReason":null},{"name":"LIPSTICK","description":"lipstick","isDeprecated":false,"deprecationReason":null},{"name":"NULL","description":"No color","isDeprecated":false,"deprecationReason":null},{"name":"PURPLE","description":"purple","isDeprecated":false,"deprecationReason":null},{"name":"SOFIA_PINK","description":"sofia_pink","isDeprecated":false,"deprecationReason":null},{"name":"STUCK_RED","description":"stuck-red","isDeprecated":false,"deprecationReason":null},{"name":"SUNSET","description":"sunset","isDeprecated":false,"deprecationReason":null},{"name":"WORKING_ORANGE","description":"working_orange","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"FolderCustomIcon","description":"One value out of a list of valid folder custom icons","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"FOLDER","description":"Folder","isDeprecated":false,"deprecationReason":null},{"name":"MOREBELOW","description":"MoreBelow","isDeprecated":false,"deprecationReason":null},{"name":"MOREBELOWFILLED","description":"MoreBelowFilled","isDeprecated":false,"deprecationReason":null},{"name":"NULL","description":"No custom icon","isDeprecated":false,"deprecationReason":null},{"name":"WORK","description":"Work","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"FolderFontWeight","description":"One value out of a list of valid folder font weights","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"FONT_WEIGHT_BOLD","description":"font-weight-bold","isDeprecated":false,"deprecationReason":null},{"name":"FONT_WEIGHT_LIGHT","description":"font-weight-light","isDeprecated":false,"deprecationReason":null},{"name":"FONT_WEIGHT_NORMAL","description":"font-weight-normal","isDeprecated":false,"deprecationReason":null},{"name":"FONT_WEIGHT_VERY_LIGHT","description":"font-weight-very-light","isDeprecated":false,"deprecationReason":null},{"name":"NULL","description":"No font weight","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FormulaValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"display_value","description":"A string representing all the formula values, separated by commas","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Group","description":"A group of items in a board.","fields":[{"name":"archived","description":"Is the group archived or not.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"color","description":"The group's color.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleted","description":"Is the group deleted or not.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The group's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"items_page","description":"The items in the group.","args":[{"name":"cursor","description":"An opaque token representing the position in the result set from which to\nresume fetching items. Use this to paginate through large result sets.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"hierarchy_scope_config","description":"The hierarchy config to use for the query filters.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"limit","description":"The maximum number of items to fetch in a single request. Use this to\ncontrol the size of the result set and manage pagination. Maximum: 500.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":"25"},{"name":"query_params","description":"A set of parameters to filter, sort, and control the scope of the items\nquery. Use this to customize the results based on specific criteria.","type":{"kind":"INPUT_OBJECT","name":"ItemsQuery","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ItemsResponse","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"position","description":"The group's position in the board.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The group's title.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"GroupAttributes","description":"The group attributes available.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"color","description":"Group color (one of the supported colors, check the API documentation).","isDeprecated":false,"deprecationReason":null},{"name":"position","description":"The group's position in the board. Deprecated! - replaced with relative position","isDeprecated":false,"deprecationReason":null},{"name":"relative_position_after","description":"The group's relative position after another group in the board.","isDeprecated":false,"deprecationReason":null},{"name":"relative_position_before","description":"The group's relative position before another group in the board.","isDeprecated":false,"deprecationReason":null},{"name":"title","description":"Group title.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"GroupValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"group","description":"The group value.","args":[],"type":{"kind":"OBJECT","name":"Group","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"group_id","description":"The group identifier.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"HourValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hour","description":"Hour","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"minute","description":"Minute","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entity_id","description":"ID of the entity","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"issue_api_url","description":"URL of the issue","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"issue_id","description":"ID of the issue","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ItemDescription","description":"An item description.","fields":[{"name":"blocks","description":"The item's content blocks","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"DocumentBlock","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The item's unique identifier.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ItemIdValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"item_id","description":"ID of the item","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemNicknameInput","description":"Input type for item nickname configuration","fields":null,"inputFields":[{"name":"plural","description":"The plural form of the item nickname","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"preset_type","description":"The preset type for item nickname","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"singular","description":"The singular form of the item nickname","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemsPageByColumnValuesQuery","description":null,"fields":null,"inputFields":[{"name":"column_id","description":"The column's unique identifier.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"column_values","description":"The column values to search items by.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ItemsQuery","description":null,"fields":null,"inputFields":[{"name":"groups","description":"A list of rule groups","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsQueryGroup","ofType":null}}},"defaultValue":null},{"name":"ids","description":"A list of item IDs to fetch. Use this to fetch a specific set of items by their IDs. Limited to 100 IDs in ItemsQuery","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"operator","description":"The operator to use for the query rules or rule groups. Default: AND","type":{"kind":"ENUM","name":"ItemsQueryOperator","ofType":null},"defaultValue":"and"},{"name":"order_by","description":"Sort the results by specified columns","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsQueryOrderBy","ofType":null}}},"defaultValue":null},{"name":"rules","description":"A list of rules","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ItemsQueryRule","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ItemsResponse","description":null,"fields":[{"name":"cursor","description":"An opaque cursor that represents the position in the list after the last\nreturned item. Use this cursor for pagination to fetch the next set of items.\nIf the cursor is null, there are no more items to fetch.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"The items associated with the cursor.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Item","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"Kind","description":"Kind of assignee","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"person","description":"Represents a person","isDeprecated":false,"deprecationReason":null},{"name":"team","description":"Represents a team","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"LastUpdatedValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"Timestamp of the last time the item was updated","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updater","description":"User who updated the item","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updater_id","description":"ID of the user who updated the item","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LinkValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"Url","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url_text","description":"Url text","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LocationValue","description":null,"fields":[{"name":"address","description":"Address","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"city","description":"City","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"city_short","description":"City","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"country","description":"Country","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"country_short","description":"Country short name (e.g. PE for Peru)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lat","description":"Latitude","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"lng","description":"Longitude","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"place_id","description":"Place ID of the location","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"street","description":"Street","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"street_number","description":"Number of building in the street","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"street_number_short","description":"Short number of building in the street","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"street_short","description":"Street","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"LongTextValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MirroredItem","description":null,"fields":[{"name":"linked_board","description":"The linked board.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Board","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"linked_board_id","description":"The linked board's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"linked_item","description":"The linked item.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Item","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mirrored_value","description":"The mirrored values.","args":[],"type":{"kind":"UNION","name":"MirroredValue","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"MirroredValue","description":"Represents a mirrored value (column value, group, or board).","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"BatteryValue","ofType":null},{"kind":"OBJECT","name":"Board","ofType":null},{"kind":"OBJECT","name":"BoardRelationValue","ofType":null},{"kind":"OBJECT","name":"ButtonValue","ofType":null},{"kind":"OBJECT","name":"CheckboxValue","ofType":null},{"kind":"OBJECT","name":"ColorPickerValue","ofType":null},{"kind":"OBJECT","name":"CountryValue","ofType":null},{"kind":"OBJECT","name":"CreationLogValue","ofType":null},{"kind":"OBJECT","name":"DateValue","ofType":null},{"kind":"OBJECT","name":"DependencyValue","ofType":null},{"kind":"OBJECT","name":"DirectDocValue","ofType":null},{"kind":"OBJECT","name":"DocValue","ofType":null},{"kind":"OBJECT","name":"DropdownValue","ofType":null},{"kind":"OBJECT","name":"EmailValue","ofType":null},{"kind":"OBJECT","name":"FileValue","ofType":null},{"kind":"OBJECT","name":"FormulaValue","ofType":null},{"kind":"OBJECT","name":"Group","ofType":null},{"kind":"OBJECT","name":"GroupValue","ofType":null},{"kind":"OBJECT","name":"HourValue","ofType":null},{"kind":"OBJECT","name":"IntegrationValue","ofType":null},{"kind":"OBJECT","name":"ItemIdValue","ofType":null},{"kind":"OBJECT","name":"LastUpdatedValue","ofType":null},{"kind":"OBJECT","name":"LinkValue","ofType":null},{"kind":"OBJECT","name":"LocationValue","ofType":null},{"kind":"OBJECT","name":"LongTextValue","ofType":null},{"kind":"OBJECT","name":"MirrorValue","ofType":null},{"kind":"OBJECT","name":"NumbersValue","ofType":null},{"kind":"OBJECT","name":"PeopleValue","ofType":null},{"kind":"OBJECT","name":"PersonValue","ofType":null},{"kind":"OBJECT","name":"PhoneValue","ofType":null},{"kind":"OBJECT","name":"ProgressValue","ofType":null},{"kind":"OBJECT","name":"RatingValue","ofType":null},{"kind":"OBJECT","name":"StatusValue","ofType":null},{"kind":"OBJECT","name":"SubtasksValue","ofType":null},{"kind":"OBJECT","name":"TagsValue","ofType":null},{"kind":"OBJECT","name":"TeamValue","ofType":null},{"kind":"OBJECT","name":"TextValue","ofType":null},{"kind":"OBJECT","name":"TimeTrackingValue","ofType":null},{"kind":"OBJECT","name":"TimelineValue","ofType":null},{"kind":"OBJECT","name":"UnsupportedValue","ofType":null},{"kind":"OBJECT","name":"VoteValue","ofType":null},{"kind":"OBJECT","name":"WeekValue","ofType":null},{"kind":"OBJECT","name":"WorldClockValue","ofType":null}]},{"kind":"OBJECT","name":"MirrorValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"display_value","description":"A string representing all the names of the linked items, separated by commas","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mirrored_items","description":"The mirrored items.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MirroredItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Notification","description":"A notification.","fields":[{"name":"id","description":"The notification's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"The notification text.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"NotificationTargetType","description":"The notification's target type.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Post","description":"Update","isDeprecated":false,"deprecationReason":null},{"name":"Project","description":"Item or Board.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"NumbersValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"direction","description":"Indicates where the symbol should be placed - on the right or left of the number","args":[],"type":{"kind":"ENUM","name":"NumberValueUnitDirection","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"number","description":"Number","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"symbol","description":"The symbol of the unit","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"NumberValueUnitDirection","description":"Indicates where the unit symbol should be placed in a number value","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"left","description":"The symbol is placed on the left of the number","isDeprecated":false,"deprecationReason":null},{"name":"right","description":"The symbol is placed on the right of the number","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ObjectType","description":"Represents a monday object.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Board","description":"Represents a board object type.","isDeprecated":false,"deprecationReason":null},{"name":"Folder","description":"Represents a folder object type.","isDeprecated":false,"deprecationReason":null},{"name":"Overview","description":"Represents an overview object type.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"OutOfOffice","description":"The working status of a user.","fields":[{"name":"active","description":"Is the status active?","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"disable_notifications","description":"Are notification disabled?","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"end_date","description":"The status end date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"start_date","description":"The status start date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"Out of office type.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Overview","description":"A monday.com overview.","fields":[{"name":"created_at","description":"The time the overview was created at.","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The creator of the overview.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"folder_id","description":"The overview's folder unique identifier.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The unique identifier of the overview.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The overview's kind (public/private).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The overview's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The overview's state.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The last time the overview was updated at.","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workspace_id","description":"The overview's workspace unique identifier.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PeopleEntity","description":null,"fields":[{"name":"id","description":"Id of the entity: a person or a team","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"Type of entity","args":[],"type":{"kind":"ENUM","name":"Kind","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PeopleValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"persons_and_teams","description":"The people and teams assigned to the item.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PeopleEntity","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"person_id","description":"The person assigned to the item.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PhoneValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"country_short_name","description":"ISO-2 country code","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"phone","description":"Phone number","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Plan","description":"A payment plan.","fields":[{"name":"max_users","description":"The maximum users allowed in the plan.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"period","description":"The plan's time period.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tier","description":"The plan's tier.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"version","description":"The plan's version.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"PositionRelative","description":"The position relative method.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"after_at","description":"position after at the given entity.","isDeprecated":false,"deprecationReason":null},{"name":"before_at","description":"position before at the given entity.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ProgressValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RatingValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"rating","description":"Rating value","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SetBoardPermissionResponse","description":"Response type for detailed board permissions. Contains information about the permissions that were set.","fields":[{"name":"edit_permissions","description":"The technical board write permissions value that was set (e.g., 'everyone', 'collaborators', 'owners').","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"BoardEditPermissions","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"failed_actions","description":"List of any actions that failed during the permission update process.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"State","description":"The possible states for a board or item.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"active","description":"Active only (Default).","isDeprecated":false,"deprecationReason":null},{"name":"all","description":"Active, Archived and Deleted.","isDeprecated":false,"deprecationReason":null},{"name":"archived","description":"Archived only.","isDeprecated":false,"deprecationReason":null},{"name":"deleted","description":"Deleted only.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"StatusLabelStyle","description":"A status label style.","fields":[{"name":"border","description":"The label's border color in hex format.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"color","description":"The label's color in hex format.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"StatusValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"index","description":"The index of the status in the board","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_done","description":"Whether the status is done","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"label","description":"The label of the status","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"label_style","description":"The style of the status label","args":[],"type":{"kind":"OBJECT","name":"StatusLabelStyle","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update_id","description":"The ID of an update attached to the status","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SubtasksValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"display_value","description":"A string representing all the names of the subtasks, separated by commas","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subitems","description":"The subitems","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Item","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"subitems_ids","description":"The subitems IDs","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Tag","description":"A tag","fields":[{"name":"color","description":"The tag's color.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The tag's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The tag's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TagsValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"tag_ids","description":"Tag ID's","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"A list of tags","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Tag","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Team","description":"A team of users.","fields":[{"name":"id","description":"The team's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"owners","description":"The users who are the owners of the team.","args":[{"name":"ids","description":"A list of users' unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"picture_url","description":"The team's picture url.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"users","description":"The users in the team.","args":[{"name":"emails","description":"A list of users' emails.","type":{"kind":"LIST","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"ids","description":"A list of users' unique identifiers.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null},{"name":"kind","description":"The kind to search users by (all / non_guests / guests / non_pending).","type":{"kind":"ENUM","name":"UserKind","ofType":null},"defaultValue":null},{"name":"limit","description":"Number of users to get.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"name","description":"Allows to fuzzy search by name","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"newest_first","description":"Get the recently created users at the top of the list","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"non_active","description":"Return non active users in the account.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The team's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_guest","description":"Whether the team is a guest team","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TeamValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"team_id","description":"ID of the assigned team","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":"A monday.com template.","fields":[{"name":"process_id","description":"The template process unique identifier for async operations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TextValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"The column's textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TimelineValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"from","description":"The start date of the timeline","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"The range of dates representing the timeline (YYYY-MM-DD)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"to","description":"The end date of the timeline","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"visualization_type","description":"The visualization type for the timeline","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TimeTrackingHistoryItem","description":null,"fields":[{"name":"created_at","description":"When the session was added to the cell","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Date","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ended_at","description":"Only applicable if the session has ended","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ended_user_id","description":"The identifier of an user which ended the tracking","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"A unique session identifier","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"manually_entered_end_date","description":"Is true if the session end date was manually entered","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"manually_entered_end_time","description":"Is true if the session end time was manually entered","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"manually_entered_start_date","description":"Is true if the session start date was manually entered","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"manually_entered_start_time","description":"Is true if the session start time was manually entered","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"started_at","description":"Only applicable if the session was added by pressing the play button or via automation","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"started_user_id","description":"The identifier of an user which started the tracking","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":"The status of the session","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"When the session was updated","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TimeTrackingValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"duration","description":"Total duration of the time tracker","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"history","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TimeTrackingHistoryItem","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"running","description":"Whether the time tracker is running","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"started_at","description":"The date when the time tracker was started","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UnsupportedValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Text representation of the column value. Note: Not all columns support textual value","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateBoardHierarchyAttributesInput","description":"Attributes for updating a board's position and location","fields":null,"inputFields":[{"name":"account_product_id","description":"The ID of the account product where the board should be placed","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"folder_id","description":"The ID of the folder where the board should be placed","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"position","description":"The position of the board in the left pane","type":{"kind":"INPUT_OBJECT","name":"DynamicPosition","ofType":null},"defaultValue":null},{"name":"workspace_id","description":"The ID of the workspace where the board should be placed","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateBoardHierarchyResult","description":"Result of updating a board's position","fields":[{"name":"board","description":"The updated board","args":[],"type":{"kind":"OBJECT","name":"Board","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":"A message about the operation result","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Whether the operation was successful","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOverviewHierarchy","description":"Result type for updating an overview's hierarchy","fields":[{"name":"message","description":"Message about the operation result","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"overview","description":"The updated overview","args":[],"type":{"kind":"OBJECT","name":"Overview","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Whether the operation was successful","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOverviewHierarchyAttributesInput","description":"Attributes for updating an overview's hierarchy and location","fields":null,"inputFields":[{"name":"account_product_id","description":"The ID of the account product where the overview should be placed","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"folder_id","description":"The ID of the folder where the overview should be placed","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"position","description":"The position of the overview in the left pane","type":{"kind":"INPUT_OBJECT","name":"DynamicPosition","ofType":null},"defaultValue":null},{"name":"workspace_id","description":"The ID of the workspace where the overview should be placed","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateWorkspaceAttributesInput","description":"Attributes of a workspace to update","fields":null,"inputFields":[{"name":"account_product_id","description":"The target account product's ID to move the workspace to","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":"The description of the workspace to update","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"kind","description":"The kind of the workspace to update (open / closed / template)","type":{"kind":"ENUM","name":"WorkspaceKind","ofType":null},"defaultValue":null},{"name":"name","description":"The name of the workspace to update","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserKind","description":"The possibilities for a user kind.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"all","description":"All users in account.","isDeprecated":false,"deprecationReason":null},{"name":"guests","description":"Only guests.","isDeprecated":false,"deprecationReason":null},{"name":"non_guests","description":"Only company members.","isDeprecated":false,"deprecationReason":null},{"name":"non_pending","description":"All non pending members.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Version","description":"An object containing the API version details","fields":[{"name":"display_name","description":"The display name of the API version","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The type of the API version","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"VersionKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"Version string that can be used in API-Version header","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"VersionKind","description":"All possible API version types","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"current","description":"Current version","isDeprecated":false,"deprecationReason":null},{"name":"deprecated","description":"No longer supported version. Migrate to current version as soon as possible","isDeprecated":false,"deprecationReason":null},{"name":"dev","description":"Bleeding-edge rolling version that constantly changes","isDeprecated":false,"deprecationReason":null},{"name":"maintenance","description":"Previous version. Migrate to current version as soon as possible","isDeprecated":false,"deprecationReason":null},{"name":"old__maintenance","description":"Old version that will be deprecated in January. Migrate to current version as soon as possible","isDeprecated":false,"deprecationReason":null},{"name":"old_previous_maintenance","description":"Old version that will be deprecated in January. Migrate to current version as soon as possible","isDeprecated":false,"deprecationReason":null},{"name":"previous_maintenance","description":"Older version that will be deprecated in January. Migrate to current version as soon as possible","isDeprecated":false,"deprecationReason":null},{"name":"release_candidate","description":"Next version","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"VoteValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"vote_count","description":"The total number of votes","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"voter_ids","description":"A list of IDs of users who voted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"voters","description":"A list of users who voted","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Webhook","description":"Monday webhooks","fields":[{"name":"board_id","description":"The webhooks's board id.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"config","description":"The webhooks's config.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"event","description":"The event webhook will listen to","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"WebhookEventType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The webhooks's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"WebhookEventType","description":"The webhook's target type.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"change_column_value","description":"Column value changed on board","isDeprecated":false,"deprecationReason":null},{"name":"change_name","description":"An item name changed on board","isDeprecated":false,"deprecationReason":null},{"name":"change_specific_column_value","description":"Specific Column value changed on board","isDeprecated":false,"deprecationReason":null},{"name":"change_status_column_value","description":"Status column value changed on board","isDeprecated":false,"deprecationReason":null},{"name":"change_subitem_column_value","description":"Column value changed on board subitem","isDeprecated":false,"deprecationReason":null},{"name":"change_subitem_name","description":"An subitem name changed on board","isDeprecated":false,"deprecationReason":null},{"name":"create_column","description":"Column created on a board","isDeprecated":false,"deprecationReason":null},{"name":"create_item","description":"An item was created on board","isDeprecated":false,"deprecationReason":null},{"name":"create_subitem","description":"A subitem was created on a board","isDeprecated":false,"deprecationReason":null},{"name":"create_subitem_update","description":"An update was posted on board subitem","isDeprecated":false,"deprecationReason":null},{"name":"create_update","description":"An update was posted on board item","isDeprecated":false,"deprecationReason":null},{"name":"delete_update","description":"An update was deleted from board item","isDeprecated":false,"deprecationReason":null},{"name":"edit_update","description":"An update was edited on board item","isDeprecated":false,"deprecationReason":null},{"name":"item_archived","description":"An item was archived on a board","isDeprecated":false,"deprecationReason":null},{"name":"item_deleted","description":"An item was deleted from a board","isDeprecated":false,"deprecationReason":null},{"name":"item_moved_to_any_group","description":"An item is moved to any group","isDeprecated":false,"deprecationReason":null},{"name":"item_moved_to_specific_group","description":"An item is moved to a specific group","isDeprecated":false,"deprecationReason":null},{"name":"item_restored","description":"An item restored back to board","isDeprecated":false,"deprecationReason":null},{"name":"move_subitem","description":"A subitem is moved from one parent to another","isDeprecated":false,"deprecationReason":null},{"name":"subitem_archived","description":"A subitem was archived on a board","isDeprecated":false,"deprecationReason":null},{"name":"subitem_deleted","description":"A subitem was deleted from a board","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"WeekValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"end_date","description":"The end date of the week","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"start_date","description":"The start date of the week","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"The range of dates representing the week (YYYY-MM-DD)","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Workspace","description":"A monday.com workspace.","fields":[{"name":"account_product","description":"The account product that contains workspace.","args":[],"type":{"kind":"OBJECT","name":"AccountProduct","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The workspace's creation date.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"The workspace's description.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The workspace's unique identifier.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_default_workspace","description":"Returns true if it is the default workspace of the product or account","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The workspace's kind (open / closed / template).","args":[],"type":{"kind":"ENUM","name":"WorkspaceKind","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The workspace's name.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"owners_subscribers","description":"The workspace's user owners.","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"settings","description":"The workspace's settings.","args":[],"type":{"kind":"OBJECT","name":"WorkspaceSettings","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The workspace's state (all / active / archived / deleted).","args":[],"type":{"kind":"ENUM","name":"State","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"team_owners_subscribers","description":"The workspace's team owners.","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"teams_subscribers","description":"The teams subscribed to the workspace.","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"Team","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"users_subscribers","description":"The users subscribed to the workspace","args":[{"name":"limit","description":"Number of items to get, the default is 25.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"25"},{"name":"page","description":"Page number to get, starting at 1.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":"1"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"WorkspaceIcon","description":"The workspace's icon.","fields":[{"name":"color","description":"The icon color in hex value. Used as a background for the image.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"image","description":"The public image URL, which is temporary in the case of a file that was\nuploaded by the user, so you'll need to pull a new version at least once an hour.\n                               In case it is null, you can use the first letter of the workspace name.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"WorkspaceKind","description":"The workspace kinds available.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"closed","description":"Closed workspace, available to enterprise only.","isDeprecated":false,"deprecationReason":null},{"name":"open","description":"Open workspace.","isDeprecated":false,"deprecationReason":null},{"name":"template","description":"Template workspace.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"WorkspaceMembershipKind","description":"The membership kind of the user in the workspace.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"all","description":"All accessible workspaces","isDeprecated":false,"deprecationReason":null},{"name":"member","description":"Workspace member.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"WorkspaceSettings","description":"The workspace's settings.","fields":[{"name":"icon","description":"The workspace icon.","args":[],"type":{"kind":"OBJECT","name":"WorkspaceIcon","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"WorkspacesOrderBy","description":"Options to order by.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"created_at","description":"The rank order of the workspace creation time (desc).","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"WorkspaceSubscriberKind","description":"The workspace subscriber kind.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"owner","description":"Workspace owner.","isDeprecated":false,"deprecationReason":null},{"name":"subscriber","description":"Workspace subscriber.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"WorldClockValue","description":null,"fields":[{"name":"column","description":"The column that this value belongs to.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Column","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The column's unique identifier.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"is_leaf","description":"Whether this item is a leaf (has no subitems).","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timezone","description":"Timezone","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The column's type.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ColumnType","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"The date when column value was last updated.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The column's raw value in JSON format.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"ColumnValue","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BoardUsage","description":"Enum representing different usage types for board operations","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CONVERT_TO_PROJECT","description":"Board can be converted to a project","isDeprecated":false,"deprecationReason":null},{"name":"CONNECT_TO_PORTFOLIO","description":"Board can be connected to a portfolio","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ColumnsMappingInput","description":null,"fields":null,"inputFields":[{"name":"project_status","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"project_timeline","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"project_owner","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ConvertBoardToProjectInput","description":null,"fields":null,"inputFields":[{"name":"board_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"column_mappings","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ColumnsMappingInput","ofType":null}},"defaultValue":null},{"name":"callback_url","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConvertBoardToProjectResult","description":null,"fields":[{"name":"success","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projectId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"process_id","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"BoardMuteSettings","description":null,"fields":[{"name":"board_id","description":"Board ID","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mute_state","description":"Human-friendly mute state for the board and current user","args":[],"type":{"kind":"ENUM","name":"BoardMuteState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enabled","description":"List of enabled customizable settings when the board is in CUSTOM_SETTINGS mute state. Null otherwise.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"CustomizableBoardSettings","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BoardMuteState","description":"Represents the mute state of a board for the current user.\n\n  - NOT_MUTED: The board is not muted at all (default state). This state, as well as MUTE_ALL, is set by the board owner(s) and only they can change it.\n  - MUTE_ALL: All notifications for all users are muted on this board. This state, as well as NOT_MUTED, is set by the board owner(s) and only they can change it.\n  - MENTIONS_AND_ASSIGNS_ONLY: The current user will only be notified if mentioned or assigned on the board. \n  - CUSTOM_SETTINGS: The current user will only be notified for the enabled custom settings. configurable settings: IM_MENTIONED, IM_ASSIGNED, AUTOMATION_NOTIFY \n  - CURRENT_USER_MUTE_ALL: Only the current user has all notifications muted from this board.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"NOT_MUTED","description":"The board is not muted at all (default state). This state is set by the board owner(s) and only they can change it.","isDeprecated":false,"deprecationReason":null},{"name":"MUTE_ALL","description":"All notifications for all users are muted on this board. This state is set by the board owner(s) and only they can change it.","isDeprecated":false,"deprecationReason":null},{"name":"MENTIONS_AND_ASSIGNS_ONLY","description":"The current user will only be notified if mentioned or assigned on the board","isDeprecated":false,"deprecationReason":null},{"name":"CUSTOM_SETTINGS","description":"The current user will only be notified for the enabled custom settings. configurable settings: IM_MENTIONED, IM_ASSIGNED, AUTOMATION_NOTIFY","isDeprecated":false,"deprecationReason":null},{"name":"CURRENT_USER_MUTE_ALL","description":"Only the current user has all notifications muted from this board","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ChannelEditableStatus","description":"Whether this channel is editable, always enabled, or not relevant to the notification","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"AllRelatedNotificationsDontHaveChannel","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AlwaysEnabled","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Editable","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ChannelType","description":"Available notification channel types: Monday, Email, Slack","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Monday","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Email","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Slack","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"CustomizableBoardSettings","description":"These settings can be customized when the board is in CUSTOM_SETTINGS mute state. Configurable settings: IM_MENTIONED, IM_ASSIGNED, AUTOMATION_NOTIFY","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"IM_MENTIONED","description":"Notify me when I am mentioned on this board","isDeprecated":false,"deprecationReason":null},{"name":"IM_ASSIGNED","description":"Notify me when I am assigned on this board","isDeprecated":false,"deprecationReason":null},{"name":"AUTOMATION_NOTIFY","description":"Notify me on automation notify step on this board","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"NotificationSetting","description":"Represents notification settings configuration","fields":[{"name":"kind","description":"Notification setting kind","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"Description of the notification setting","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_for_admins_only","description":"Whether this setting is only configurable by admins","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"is_for_non_guests_only","description":"Whether this setting is not applicable for guest users","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"channels","description":"Available notification channels for this setting","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NotificationSettingChannel","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"NotificationSettingChannel","description":"Represents a notification channel configuration","fields":[{"name":"name","description":"Notification channel destination: Monday, Email, Slack","args":[],"type":{"kind":"ENUM","name":"ChannelType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enabled","description":"Whether notifications are enabled for this channel","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"editable_status","description":"Whether or not this channel settings is editable","args":[],"type":{"kind":"ENUM","name":"ChannelEditableStatus","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"NotificationV2","description":"A notification.","fields":[{"name":"id","description":"The unique identifier of the notification.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"The date and time the notification was created.","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The title of the notification.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"The text content of the notification.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creators","description":"The users who created the notification.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"read","description":"Whether the notification has been read.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":"The update that triggered the notification.","args":[],"type":{"kind":"OBJECT","name":"Update","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"item","description":"The item that is associated with the notification.","args":[],"type":{"kind":"OBJECT","name":"Item","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"board","description":"The board that is associated with the notification.","args":[],"type":{"kind":"OBJECT","name":"Board","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ScopeType","description":"notification settings scope types, the options are account user defaults or user private settings","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"User","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AccountNewUserDefaults","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Object","description":"The central type in the Monday.com Objects Platform, representing any entity in the system. This unified type can represent instances of boards, docs, dashboards, workflows, and specialized objects. The specific type of an object is determined by its object_type_unique_key.","fields":[{"name":"id","description":"The unique identifier of the object. Can be used to reference this specific object in queries and mutations.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The display name of the object. This is what appears in the Monday.com interface.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"Optional description of the object, providing additional context about its purpose or contents.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"privacy_kind","description":"The kind/visibility setting of the object (private, public, share). Determines who can access it.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"folder_id","description":"The ID of the folder containing this object, if the object is organized in a folder structure.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"Timestamp of when the object was last updated. Format is ISO 8601.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"The current state of the object. Determines visibility in the interface.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"creator","description":"The ID of the user who created this object. Useful for tracking object origin.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workspace_id","description":"The ID of the workspace containing this object. Null indicates the object is in the main workspace.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"owners","description":"List of users who are owners of this object. Owners have full control permissions.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"subscribers","description":"List of users who are subscribers to this object. Subscribers receive notifications about changes.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ObjectOperationResponse","description":"Response for object operations indicating success or failure","fields":[{"name":"success","description":"Indicates whether the operation was successful","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ObjectState","description":"The state of the object.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACTIVE","description":"The object is active.","isDeprecated":false,"deprecationReason":null},{"name":"ARCHIVED","description":"The object is archived.","isDeprecated":false,"deprecationReason":null},{"name":"DELETED","description":"The object is deleted.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ObjectTypeUniqueKey","description":"Represents object type unique key and metadata.","fields":[{"name":"app_name","description":"The name of the app that provides this object type.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"app_feature_name","description":"The name of the app feature object type (e.g., 'Workflow', 'Capacity manager').","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"A short description of what this object type represents.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"object_type_unique_key","description":"The unique identifier for the object type, formatted as 'app_slug::app_feature_slug'","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderBy","description":"Defines the sorting order for returned objects in the objects query.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CREATED_AT","description":"Sort objects by their creation date, from newest to oldest.","isDeprecated":false,"deprecationReason":null},{"name":"USED_AT","description":"Sort objects by when they were last used, from most recent to least recent.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"SubscriberKind","description":"Defines the type of the user's role as members of the object","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"OWNER","description":"User will be added as an owner of the object, granting them full control permissions.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIBER","description":"User will be added as a subscriber to the object, receiving notifications about changes.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateObjectInput","description":"Input for updating an object","fields":null,"inputFields":[{"name":"name","description":"The new name for the object.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"The new description for the object","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"privacy_kind","description":"The new privacy kind for the object.","type":{"kind":"ENUM","name":"PrivacyKind","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DailyAnalytics","description":"API usage data.","fields":[{"name":"last_updated","description":"Last time the API usage data was updated.","args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"by_day","description":"API usage per day.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PlatformApiDailyAnalyticsByDay","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"by_app","description":"API usage per app.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PlatformApiDailyAnalyticsByApp","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"by_user","description":"API usage per user.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PlatformApiDailyAnalyticsByUser","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DailyLimit","description":"Platform API daily limit.","fields":[{"name":"base","description":"Base daily limit.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"total","description":"Total daily limit.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PlatformApi","description":"The Platform API's data.","fields":[{"name":"daily_limit","description":"Platform API daily limit.","args":[],"type":{"kind":"OBJECT","name":"DailyLimit","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"daily_analytics","description":"API analytics.","args":[],"type":{"kind":"OBJECT","name":"DailyAnalytics","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PlatformApiDailyAnalyticsByApp","description":"API usage per app.","fields":[{"name":"app","description":"Application.","args":[],"type":{"kind":"OBJECT","name":"AppType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"usage","description":"API usage for the app.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"api_app_id","description":"API app id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PlatformApiDailyAnalyticsByDay","description":"API usage per day.","fields":[{"name":"day","description":"Day.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"usage","description":"API usage for the day.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PlatformApiDailyAnalyticsByUser","description":"API usage per user.","fields":[{"name":"user","description":"User.","args":[],"type":{"kind":"OBJECT","name":"User","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"usage","description":"API usage for the user.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ConnectProjectResult","description":null,"fields":[{"name":"success","description":"Indicates if the operation was successful.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":"A message describing the result of the operation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"portfolio_item_id","description":"The ID of the created portfolio item, if successful.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePortfolioResult","description":null,"fields":[{"name":"solution_live_version_id","description":"The ID of the solution that was created","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"success","description":"Indicates if the operation was successful.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"message","description":"A message describing the result of the operation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AggregateBasicAggregationResult","description":null,"fields":[{"name":"result","description":null,"args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AggregateFromElementType","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"TABLE","description":"A single table to select from","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AggregateFromTableInput","description":null,"fields":null,"inputFields":[{"name":"type","description":"Always TABLE or DATA_VIEW","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AggregateFromElementType","ofType":null}},"defaultValue":null},{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AggregateGroupByElementInput","description":null,"fields":null,"inputFields":[{"name":"column_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"limit","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AggregateGroupByResult","description":null,"fields":[{"name":"value_string","description":"The string value of the group by result.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value_int","description":"The integer value of the group by result.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value_float","description":"The float value of the group by result.","args":[],"type":{"kind":"SCALAR","name":"Float","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value_boolean","description":"The boolean value of the group by result.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The value of the group by result. Can be an integer, float, string, or boolean.","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AggregateQueryInput","description":null,"fields":null,"inputFields":[{"name":"select","description":"Select elements to return. Each element must have either a function or column property. If selecting a column or transformative function, the element must appear in group by.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AggregateSelectElementInput","ofType":null}}}},"defaultValue":null},{"name":"from","description":"Source to select from (table or data view)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AggregateFromTableInput","ofType":null}},"defaultValue":null},{"name":"group_by","description":"Group by elements","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AggregateGroupByElementInput","ofType":null}}},"defaultValue":null},{"name":"query","description":"ItemsQuery filter and sort. If not provided, all items will be returned.","type":{"kind":"INPUT_OBJECT","name":"ItemsQuery","ofType":null},"defaultValue":null},{"name":"limit","description":"Max number of results to return","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AggregateQueryResult","description":null,"fields":[{"name":"results","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AggregateResultSet","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"UNION","name":"AggregateResult","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AggregateBasicAggregationResult","ofType":null},{"kind":"OBJECT","name":"AggregateGroupByResult","ofType":null}]},{"kind":"OBJECT","name":"AggregateResultEntry","description":null,"fields":[{"name":"alias","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":null,"args":[],"type":{"kind":"UNION","name":"AggregateResult","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AggregateResultSet","description":null,"fields":[{"name":"entries","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AggregateResultEntry","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AggregateSelectColumnInput","description":null,"fields":null,"inputFields":[{"name":"column_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AggregateSelectElementInput","description":null,"fields":null,"inputFields":[{"name":"type","description":"Type of the selected element","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AggregateSelectElementType","ofType":null}},"defaultValue":null},{"name":"column","description":"Column to select. Required if type is COLUMN. If selecting a column, the element must have a matching group by element with the same column_id or alias, if present.","type":{"kind":"INPUT_OBJECT","name":"AggregateSelectColumnInput","ofType":null},"defaultValue":null},{"name":"function","description":"Function to select. Required if type is FUNCTION. If selecting a transformative function, the element must have a matching group by element with the same alias. If selecting an aggregative function, the select element must not have a matching group by element.","type":{"kind":"INPUT_OBJECT","name":"AggregateSelectFunctionInput","ofType":null},"defaultValue":null},{"name":"as","description":"Alias for the selected element","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AggregateSelectElementType","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"COLUMN","description":"A column to select","isDeprecated":false,"deprecationReason":null},{"name":"FUNCTION","description":"A function to select","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"AggregateSelectFunctionInput","description":null,"fields":null,"inputFields":[{"name":"function","description":"Function to select. Required if type is FUNCTION","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AggregateSelectFunctionName","ofType":null}},"defaultValue":null},{"name":"params","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"AggregateSelectElementInput","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AggregateSelectFunctionName","description":"Function to select. Required if type is FUNCTION","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"NONE","description":"No function applied","isDeprecated":false,"deprecationReason":null},{"name":"COUNT_ITEMS","description":"Count the number of items","isDeprecated":false,"deprecationReason":null},{"name":"COUNT_SUBITEMS","description":"Count the number of subitems","isDeprecated":false,"deprecationReason":null},{"name":"COUNT","description":"Count the number of values","isDeprecated":false,"deprecationReason":null},{"name":"COUNT_DISTINCT","description":"Count the number of distinct values of the items","isDeprecated":false,"deprecationReason":null},{"name":"COUNT_KEYS","description":"Count the number of keys in the object","isDeprecated":false,"deprecationReason":null},{"name":"SUM","description":"Sum the values of the items","isDeprecated":false,"deprecationReason":null},{"name":"AVERAGE","description":"Average the values of the items","isDeprecated":false,"deprecationReason":null},{"name":"MEDIAN","description":"Get the median of the values of the items","isDeprecated":false,"deprecationReason":null},{"name":"MIN","description":"Get the minimum value of the items","isDeprecated":false,"deprecationReason":null},{"name":"MAX","description":"Get the maximum value of the items","isDeprecated":false,"deprecationReason":null},{"name":"MIN_MAX","description":"Get the minimum and maximum values of the items","isDeprecated":false,"deprecationReason":null},{"name":"BETWEEN","description":"Check if the value is between two values","isDeprecated":false,"deprecationReason":null},{"name":"DURATION_RUNNING","description":"Get the running duration of the items","isDeprecated":false,"deprecationReason":null},{"name":"UPPER","description":"Convert text to uppercase","isDeprecated":false,"deprecationReason":null},{"name":"LOWER","description":"Convert text to lowercase","isDeprecated":false,"deprecationReason":null},{"name":"TRIM","description":"Remove whitespace from text","isDeprecated":false,"deprecationReason":null},{"name":"LENGTH","description":"Get the length of the value","isDeprecated":false,"deprecationReason":null},{"name":"FIRST","description":"Get the first value","isDeprecated":false,"deprecationReason":null},{"name":"LEFT","description":"Get the leftmost characters","isDeprecated":false,"deprecationReason":null},{"name":"FLATTEN","description":"Flatten nested values","isDeprecated":false,"deprecationReason":null},{"name":"CASE","description":"Conditional case statement","isDeprecated":false,"deprecationReason":null},{"name":"EQUALS","description":"Check if values are equal","isDeprecated":false,"deprecationReason":null},{"name":"DATE_TRUNC_DAY","description":"Truncate date to day precision","isDeprecated":false,"deprecationReason":null},{"name":"DATE_TRUNC_WEEK","description":"Truncate date to week precision","isDeprecated":false,"deprecationReason":null},{"name":"DATE_TRUNC_MONTH","description":"Truncate date to month precision","isDeprecated":false,"deprecationReason":null},{"name":"DATE_TRUNC_QUARTER","description":"Truncate date to quarter precision","isDeprecated":false,"deprecationReason":null},{"name":"DATE_TRUNC_YEAR","description":"Truncate date to year precision","isDeprecated":false,"deprecationReason":null},{"name":"DATE","description":"Extract date component","isDeprecated":false,"deprecationReason":null},{"name":"START_DATE","description":"Get start date from date range","isDeprecated":false,"deprecationReason":null},{"name":"END_DATE","description":"Get end date from date range","isDeprecated":false,"deprecationReason":null},{"name":"HOUR","description":"Extract hour from datetime","isDeprecated":false,"deprecationReason":null},{"name":"PERSON","description":"Extract person information","isDeprecated":false,"deprecationReason":null},{"name":"ID","description":"Extract ID value","isDeprecated":false,"deprecationReason":null},{"name":"LABEL","description":"Extract label text","isDeprecated":false,"deprecationReason":null},{"name":"COLOR","description":"Extract color value","isDeprecated":false,"deprecationReason":null},{"name":"ORDER","description":"Extract order value","isDeprecated":false,"deprecationReason":null},{"name":"RAW","description":"Get raw value without formatting","isDeprecated":false,"deprecationReason":null},{"name":"IS_DONE","description":"Check if status is done","isDeprecated":false,"deprecationReason":null},{"name":"PHONE_COUNTRY_SHORT_NAME","description":"Extract phone country short name","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"DirectoryResource","description":"A resource from the directory","fields":[{"name":"id","description":"The identifier of the directory resource.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the directory resource.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"The email address of the directory resource.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"job_role","description":"The job role of the directory resource.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"skills","description":"The skills of the directory resource.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"location","description":"The location of the directory resource.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DirectoryResourceAttribute","description":"Attributes that can be updated on a resource directory entry","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"JOB_ROLE","description":"Represents the resource directory job role attribute.","isDeprecated":false,"deprecationReason":null},{"name":"SKILLS","description":"Represents the resource directory skills attribute.","isDeprecated":false,"deprecationReason":null},{"name":"LOCATION","description":"Represents the resource directory location attribute.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"DirectoryResourcesResponse","description":"Paginated response containing directory resources and cursor for next page","fields":[{"name":"id","description":"Response identifier","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resources","description":"List of directory resources","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DirectoryResource","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"cursor","description":"Cursor for fetching the next page of results","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateDirectoryResourceAttributesResponse","description":"Response indicating whether the directory attribute update succeeded","fields":[{"name":"success","description":"Indicates whether the batch update completed successfully.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Sprint","description":"A monday dev sprint.","fields":[{"name":"id","description":"monday dev sprint unique identifier","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"monday dev sprint name","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"items associated with the monday dev sprint","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Item","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"start_date","description":"date at which the monday dev sprint start action was performed, null if the sprint was never started","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"end_date","description":"date at which the monday dev sprint complete action was performed, null if the sprint was never completed","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"timeline","description":"user-editable planned timeline for the monday dev sprint, which may differ from its start and complete dates","args":[],"type":{"kind":"OBJECT","name":"SprintTimeline","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":"current state of the monday dev sprint","args":[],"type":{"kind":"ENUM","name":"SprintState","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"snapshots","description":"snapshots of the monday dev sprint","args":[{"name":"type","description":"type of the monday dev sprint snapshot","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SprintSnapshotKind","ofType":null}}},"defaultValue":null}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SprintSnapshot","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SprintSnapshot","description":"A monday dev sprint snapshot.","fields":[{"name":"id","description":"monday dev sprint snapshot unique identifier","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"monday dev sprint snapshot kind","args":[],"type":{"kind":"ENUM","name":"SprintSnapshotKind","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"items","description":"monday dev sprint snapshot items","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SprintSnapshotItem","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"columns_metadata","description":"monday dev sprint snapshot columns metadata","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SprintSnapshotColumnMetadata","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"sprint_id","description":"monday dev sprint unique identifier","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"created_at","description":"date and time when the object was created","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updated_at","description":"date and time when the object was last updated","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SprintSnapshotColumnMetadata","description":"A monday dev sprint snapshot column metadata.","fields":[{"name":"id","description":"monday dev sprint snapshot column id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"done_status_indexes","description":"monday dev sprint snapshot status column done status indexes","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SprintSnapshotItem","description":"A monday dev sprint snapshot item.","fields":[{"name":"id","description":"monday dev sprint item unique identifier","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"column_values","description":"monday dev sprint item column values","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"SprintSnapshotItemColumnValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"SprintSnapshotItemColumnValue","description":"A monday dev sprint snapshot item column value.","fields":[{"name":"id","description":"monday dev sprint snapshot item column id","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"monday dev sprint snapshot item column type","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"monday dev sprint snapshot item column value","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SprintSnapshotKind","description":"The kind of sprint snapshot.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"START","description":"Sprint start snapshot kind.","isDeprecated":false,"deprecationReason":null},{"name":"COMPLETE","description":"Sprint complete snapshot kind.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"SprintState","description":"current state of the monday dev sprint.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PLANNED","description":"sprint is planned and not yet started.","isDeprecated":false,"deprecationReason":null},{"name":"ACTIVE","description":"sprint is active and in progress.","isDeprecated":false,"deprecationReason":null},{"name":"COMPLETED","description":"sprint is completed.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"SprintTimeline","description":"user-editable planned timeline for the monday dev sprint, which may differ from its start and complete dates","fields":[{"name":"from","description":"user-editable start date of the monday dev sprint timeline, may be different than the sprint start date","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"to","description":"user-editable complete date of the monday dev sprint timeline, may be different than the sprint complete date","args":[],"type":{"kind":"SCALAR","name":"Date","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AccountRole","description":"A role in the account","fields":[{"name":"id","description":"The ID of the role","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the role","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"roleType","description":"The type of the role","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ActivateUsersError","description":"Error that occurred during activation.","fields":[{"name":"message","description":"The error message.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":"The error code.","args":[],"type":{"kind":"ENUM","name":"ActivateUsersErrorCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"The id of the user that caused the error.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ActivateUsersErrorCode","description":"Error codes for activating users.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"EXCEEDS_BATCH_LIMIT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INVALID_INPUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USER_NOT_FOUND","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CANNOT_UPDATE_SELF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ActivateUsersResult","description":"Result of activating users.","fields":[{"name":"activated_users","description":"The users that were activated.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"Errors that occurred during activation.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ActivateUsersError","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AssignTeamOwnersError","description":"Error that occurred while changing team owners.","fields":[{"name":"message","description":"The error message.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":"The error code.","args":[],"type":{"kind":"ENUM","name":"AssignTeamOwnersErrorCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"The id of the user that caused the error.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AssignTeamOwnersErrorCode","description":"Error codes that can occur while changing team owners.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"VIEWERS_OR_GUESTS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USER_NOT_MEMBER_OF_TEAM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EXCEEDS_BATCH_LIMIT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INVALID_INPUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USER_NOT_FOUND","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CANNOT_UPDATE_SELF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"AssignTeamOwnersResult","description":"Result of changing the team's ownership.","fields":[{"name":"team","description":"The team for which the owners were changed.","args":[],"type":{"kind":"OBJECT","name":"Team","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"Errors that occurred while changing team owners.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AssignTeamOwnersError","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"BaseRoleName","description":"The role of the user.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"GUEST","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEW_ONLY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MEMBER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTeamAttributesInput","description":"Attributes of the team to be created.","fields":null,"inputFields":[{"name":"name","description":"The team's name.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"is_guest_team","description":"Whether the team can contain guest users.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"parent_team_id","description":"The parent team identifier.","type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"subscriber_ids","description":"The team members. Must not be empty, unless allow_empty_team is set.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTeamOptionsInput","description":"Options for creating a team.","fields":null,"inputFields":[{"name":"allow_empty_team","description":"Whether to allow a team without any subscribers.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeactivateUsersError","description":"Error that occurred during deactivation.","fields":[{"name":"message","description":"The error message.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":"The error code.","args":[],"type":{"kind":"ENUM","name":"DeactivateUsersErrorCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"The id of the user that caused the error.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DeactivateUsersErrorCode","description":"Error codes for deactivating users.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"EXCEEDS_BATCH_LIMIT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INVALID_INPUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USER_NOT_FOUND","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CANNOT_UPDATE_SELF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"DeactivateUsersResult","description":"Result of deactivating users.","fields":[{"name":"deactivated_users","description":"The users that were deactivated.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"Errors that occurred during deactivation.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeactivateUsersError","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InviteUsersError","description":"Error that occurred while inviting users","fields":[{"name":"message","description":"The error message.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":"The error code.","args":[],"type":{"kind":"ENUM","name":"InviteUsersErrorCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":"The email address for the user that caused the error.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InviteUsersErrorCode","description":"Error codes that can occur while changing email domain.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ERROR","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"InviteUsersResult","description":"Result of inviting users to the account.","fields":[{"name":"invited_users","description":"The users that were successfully invited.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"Errors that occurred while inviting users","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InviteUsersError","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"Product","description":"The product to invite the users to.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"work_management","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"crm","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"dev","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"service","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"whiteboard","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"knowledge","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"forms","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"workflows","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RemoveTeamOwnersError","description":"Error that occurred while removing team owners.","fields":[{"name":"message","description":"The error message.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":"The error code.","args":[],"type":{"kind":"ENUM","name":"RemoveTeamOwnersErrorCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"The id of the user that caused the error.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"RemoveTeamOwnersErrorCode","description":"Error codes that can occur while removing team owners.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"VIEWERS_OR_GUESTS","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USER_NOT_MEMBER_OF_TEAM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EXCEEDS_BATCH_LIMIT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INVALID_INPUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USER_NOT_FOUND","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CANNOT_UPDATE_SELF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"RemoveTeamOwnersResult","description":"Result of removing the team's ownership.","fields":[{"name":"team","description":"The team for which the owners were removed.","args":[],"type":{"kind":"OBJECT","name":"Team","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"Errors that occurred while removing team owners.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RemoveTeamOwnersError","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateEmailDomainAttributesInput","description":"Attributes of the email domain to be updated.","fields":null,"inputFields":[{"name":"user_ids","description":"The user identifiers (max 200)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null},{"name":"new_domain","description":"The new email domain.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateEmailDomainError","description":"Error that occurred while changing email domain.","fields":[{"name":"message","description":"The error message.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":"The error code.","args":[],"type":{"kind":"ENUM","name":"UpdateEmailDomainErrorCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"The id of the user that caused the error.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UpdateEmailDomainErrorCode","description":"Error codes that can occur while changing email domain.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"UPDATE_EMAIL_DOMAIN_ERROR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EXCEEDS_BATCH_LIMIT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INVALID_INPUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USER_NOT_FOUND","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CANNOT_UPDATE_SELF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UpdateEmailDomainResult","description":"Result of updating the email domain for the specified users.","fields":[{"name":"updated_users","description":"The users for which the email domain was updated.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"Errors that occurred during the update.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEmailDomainError","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserAttributesError","description":"Error that occurred while updating users attributes.","fields":[{"name":"message","description":"The error message.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":"The error code.","args":[],"type":{"kind":"ENUM","name":"UpdateUserAttributesErrorCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"The id of the user that caused the error.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UpdateUserAttributesErrorCode","description":"Error codes that can occur while updating user attributes.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"INVALID_FIELD","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUserAttributesResult","description":"The result of updating users attributes.","fields":[{"name":"updated_users","description":"The users that were updated.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"Errors that occurred during the update.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateUserAttributesError","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUsersRoleError","description":"Error that occurred during updating users role.","fields":[{"name":"message","description":"The error message.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"code","description":"The error code.","args":[],"type":{"kind":"ENUM","name":"UpdateUsersRoleErrorCode","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"user_id","description":"The id of the user that caused the error.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UpdateUsersRoleErrorCode","description":"Error codes for updating users roles.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"EXCEEDS_BATCH_LIMIT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"INVALID_INPUT","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"USER_NOT_FOUND","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CANNOT_UPDATE_SELF","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FAILED","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"UpdateUsersRoleResult","description":"Result of updating users role.","fields":[{"name":"updated_users","description":"The users that were updated.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"User","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":"Errors that occurred during updating users role.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateUsersRoleError","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UserAttributesInput","description":"The attributes to update for a user.","fields":null,"inputFields":[{"name":"birthday","description":"The birthday of the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"email","description":"The email of the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"join_date","description":"The join date of the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"name","description":"The name of the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"location","description":"The location of the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"mobile_phone","description":"The mobile phone of the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"phone","description":"The phone of the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"title","description":"The title of the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"department","description":"The department of the user.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"UserRole","description":"The role of the user.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"GUEST","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEW_ONLY","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MEMBER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UserUpdateInput","description":null,"fields":null,"inputFields":[{"name":"user_id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"user_attribute_updates","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UserAttributesInput","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Dashboard","description":"Aggregates data from one or more boards.","fields":[{"name":"id","description":"Unique identifier of the dashboard.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Dashboard title (UTF-8 chars).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"workspace_id","description":"ID of the workspace that owns this dashboard.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"Visibility level: `PUBLIC` (default) or `PRIVATE`.","args":[],"type":{"kind":"ENUM","name":"DashboardKind","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"board_folder_id","description":"Folder ID that groups elements inside the workspace (null = workspace root).","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"DashboardKind","description":"Dashboard visibility. `PUBLIC` dashboards are visible to all workspace members; `PRIVATE` dashboards are only visible to invited users.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"PUBLIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PRIVATE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"ExternalWidget","description":"Widget types available for creating data visualizations and displays","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CHART","description":"Chart widgets for visual data representation including pie charts, bar charts, line graphs, and column charts. Used to display trends, comparisons, distributions, and relationships between data points over time or categories.","isDeprecated":false,"deprecationReason":null},{"name":"NUMBER","description":"Number widgets for displaying numeric metrics such as accumulated sums, averages, counts, totals, percentages. Ideal for showing single-value metrics, counters, calculated aggregations, and key performance indicators in a prominent numeric format.","isDeprecated":false,"deprecationReason":null},{"name":"BATTERY","description":"Battery widgets for progress tracking and completion status visualization. Displays progress bars, completion percentages, status indicators, and goal achievement metrics. Perfect for showing project completion, task progress, capacity utilization, and milestone tracking.","isDeprecated":false,"deprecationReason":null},{"name":"CALENDAR","description":"Calendar widgets for timeline and schedule visualization. Displays date and timeline column data in a traditional calendar format, supporting time slots, color-coded events by board/group/status, and multi-board aggregation. Ideal for project scheduling, deadline tracking, event planning, and time-based workflow visualization.","isDeprecated":false,"deprecationReason":null},{"name":"GANTT","description":"A Gantt chart visualization of board timelines with dependencies, grouping, and coloring capabilities.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Widget","description":"Data visualization object.","fields":[{"name":"id","description":"Unique identifier of this widget.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":"Parent container where the widget is placed.","args":[],"type":{"kind":"OBJECT","name":"WidgetParentOutput","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":"The type of widget (CHART, NUMBER, BATTERY, CALENDAR, GANTT, MAP).","args":[],"type":{"kind":"ENUM","name":"ExternalWidget","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"Widget label (UTF-8 chars).","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"WidgetParentInput","description":"Parent container input where the widget will be placed.","fields":null,"inputFields":[{"name":"kind","description":"The type of parent container (DASHBOARD or BOARD_VIEW)","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"WidgetParentKind","ofType":null}},"defaultValue":null},{"name":"id","description":"The ID of the parent container.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"WidgetParentKind","description":"The kind of parent container where the widget will be placed.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DASHBOARD","description":"Widget placed in a dashboard","isDeprecated":false,"deprecationReason":null},{"name":"BOARD_VIEW","description":"Widget placed in a specific board view","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"WidgetParentOutput","description":"Parent container information in widget responses. Indicates where the widget is placed.","fields":[{"name":"kind","description":"The type of parent container (DASHBOARD or BOARD_VIEW)","args":[],"type":{"kind":"ENUM","name":"WidgetParentKind","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"The ID of the parent container.","args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"WidgetSchemaInfo","description":"Information about a widget type and its JSON schema","fields":[{"name":"widget_type","description":"The widget kind (e.g., Chart, Number, Battery)","args":[],"type":{"kind":"ENUM","name":"ExternalWidget","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"schema","description":"The JSON schema (draft 7) for this widget type","args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateFormTagInput","description":null,"fields":null,"inputFields":[{"name":"name","description":"The name of the tag. Must be unique within the form and not reserved.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":"The value of the tag","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateQuestionInput","description":null,"fields":null,"inputFields":[{"name":"type","description":"The question type determining input behavior and validation (e.g., \"text\", \"email\", \"single_select\", \"multi_select\").","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FormQuestionType","ofType":null}},"defaultValue":null},{"name":"description","description":"Optional explanatory text providing additional context, instructions, or examples for the question.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"visible","description":"Boolean controlling question visibility to respondents. Hidden questions remain in form structure but are not displayed.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"true"},{"name":"required","description":"Boolean indicating if the question must be answered before form submission.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"settings","description":"Question-specific configuration object that varies by question type.","type":{"kind":"INPUT_OBJECT","name":"FormQuestionSettingsInput","ofType":null},"defaultValue":null},{"name":"title","description":"The question text displayed to respondents. Must be at least 1 character long and clearly indicate the expected response.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"options","description":"Array of option objects for choice-based questions (single_select, multi_select). Required for select types.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"QuestionOptionInput","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DehydratedFormResponse","description":null,"fields":[{"name":"boardId","description":"The board ID connected to the form. Used to store form responses as items.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"token","description":"The unique identifier token for the form. Required for all form-specific operations.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteFormTagInput","description":null,"fields":null,"inputFields":[{"name":"deleteAssociatedColumn","description":"Options for deleting the tag","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormAccessibility","description":"Object containing accessibility options such as language, alt text, etc.","fields":[{"name":"language","description":"Language code for form localization and interface text (e.g., \"en\", \"es\", \"fr\").","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"logoAltText","description":"Alternative text description for the logo image for accessibility.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormAccessibilityInput","description":"Accessibility configuration including language and reading direction.","fields":null,"inputFields":[{"name":"language","description":"Language code for form localization and interface text (e.g., \"en\", \"es\", \"fr\").","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"logoAltText","description":"Alternative text description for the logo image for accessibility.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormAfterSubmissionView","description":null,"fields":[{"name":"title","description":"Text displayed as the title after successful form submission.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"Text shown to users after they complete the form.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"redirectAfterSubmission","description":"Object containing redirect configuration after form submission.","args":[],"type":{"kind":"OBJECT","name":"FormRedirectAfterSubmission","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"allowResubmit","description":"Boolean allowing users to submit multiple responses to the same form.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"showSuccessImage","description":"Boolean displaying a success image after form completion.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"allowEditSubmission","description":"Boolean allowing users to modify their submitted responses after submission.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"allowViewSubmission","description":"Boolean allowing users to view their submitted responses.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormAfterSubmissionViewInput","description":"Object containing settings for the post-submission user experience.","fields":null,"inputFields":[{"name":"title","description":"Text displayed as the title after successful form submission.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"Text shown to users after they complete the form.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"redirectAfterSubmission","description":"Object containing redirect configuration after form submission.","type":{"kind":"INPUT_OBJECT","name":"FormRedirectAfterSubmissionInput","ofType":null},"defaultValue":null},{"name":"allowResubmit","description":"Boolean allowing users to submit multiple responses to the same form.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"showSuccessImage","description":"Boolean displaying a success image after form completion.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"allowEditSubmission","description":"Boolean allowing users to modify their submitted responses after submission.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"allowViewSubmission","description":"Boolean allowing users to view their submitted responses.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FormAlignment","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"FullLeft","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Left","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Center","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Right","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"FullRight","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FormAppearance","description":"Object containing visual styling including colors, layout, fonts, and branding elements.","fields":[{"name":"hideBranding","description":"Boolean hiding monday branding from the form display.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"showProgressBar","description":"Boolean displaying a progress indicator showing form completion progress bar.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"primaryColor","description":"Hex color code for the primary theme color used throughout the form.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"layout","description":"Object containing form structure and presentation settings.","args":[],"type":{"kind":"OBJECT","name":"FormLayout","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"background","description":"Object containing background appearance configuration for the form.","args":[],"type":{"kind":"OBJECT","name":"FormBackground","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"text","description":"Object containing typography and text styling configuration.","args":[],"type":{"kind":"OBJECT","name":"FormText","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"logo","description":"Object containing logo display configuration for form branding.","args":[],"type":{"kind":"OBJECT","name":"FormLogo","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"submitButton","description":"Object containing submit button styling and text configuration.","args":[],"type":{"kind":"OBJECT","name":"FormSubmitButton","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormAppearanceInput","description":"Visual styling configuration including colors, layout, and branding.","fields":null,"inputFields":[{"name":"hideBranding","description":"Boolean hiding monday branding from the form display.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"showProgressBar","description":"Boolean displaying a progress indicator showing form completion progress bar.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"primaryColor","description":"Hex color code for the primary theme color used throughout the form.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"layout","description":"Object containing form structure and presentation settings.","type":{"kind":"INPUT_OBJECT","name":"FormLayoutInput","ofType":null},"defaultValue":null},{"name":"background","description":"Object containing background appearance configuration for the form.","type":{"kind":"INPUT_OBJECT","name":"FormBackgroundInput","ofType":null},"defaultValue":null},{"name":"text","description":"Object containing typography and text styling configuration.","type":{"kind":"INPUT_OBJECT","name":"FormTextInput","ofType":null},"defaultValue":null},{"name":"logo","description":"Object containing logo display configuration for form branding.","type":{"kind":"INPUT_OBJECT","name":"FormLogoInput","ofType":null},"defaultValue":null},{"name":"submitButton","description":"Object containing submit button styling and text configuration.","type":{"kind":"INPUT_OBJECT","name":"FormSubmitButtonInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormBackground","description":"Object containing background appearance configuration for the form.","fields":[{"name":"type","description":"String specifying background style.","args":[],"type":{"kind":"ENUM","name":"FormBackgrounds","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"String containing the background value. The value will depend on the background type. If the background type is color, the value will be a hex color code. If the background type is image, the value will be an image URL.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormBackgroundInput","description":"Object containing background appearance configuration for the form.","fields":null,"inputFields":[{"name":"type","description":"String specifying background style.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FormBackgrounds","ofType":null}},"defaultValue":null},{"name":"value","description":"String containing the background value. The value will depend on the background type. If the background type is color, the value will be a hex color code. If the background type is image, the value will be an image URL.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FormBackgrounds","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Image","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Color","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"None","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FormCloseDate","description":null,"fields":[{"name":"enabled","description":"Boolean enabling automatic form closure at a specified date and time.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"date","description":"ISO timestamp when the form will automatically stop accepting responses.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormCloseDateInput","description":"Object containing automatic form closure configuration.","fields":null,"inputFields":[{"name":"enabled","description":"Boolean enabling automatic form closure at a specified date and time.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"date","description":"ISO timestamp when the form will automatically stop accepting responses.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FormDirection","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"LtR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Rtl","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FormDraftSubmission","description":null,"fields":[{"name":"enabled","description":"Boolean allowing users to save incomplete responses as drafts.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormDraftSubmissionInput","description":"Object containing draft saving configuration allowing users to save progress.","fields":null,"inputFields":[{"name":"enabled","description":"Boolean allowing users to save incomplete responses as drafts.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormFeatures","description":"Object containing form features including but not limited to password protection, response limits, login requirements, etc.","fields":[{"name":"isInternal","description":"Boolean indicating if the form is restricted to internal users only.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"reCaptchaChallenge","description":"Boolean enabling reCAPTCHA verification to prevent spam submissions.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"shortenedLink","description":"Object containing shortened URL configuration for easy form sharing.","args":[],"type":{"kind":"OBJECT","name":"FormShortenedLink","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"password","description":"Object containing password protection configuration for the form.","args":[],"type":{"kind":"OBJECT","name":"FormPassword","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"draftSubmission","description":"Object containing draft saving configuration allowing users to save progress.","args":[],"type":{"kind":"OBJECT","name":"FormDraftSubmission","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"requireLogin","description":"Object containing login requirement settings for form access.","args":[],"type":{"kind":"OBJECT","name":"FormRequireLogin","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"responseLimit","description":"Object containing response limitation settings to control submission volume.","args":[],"type":{"kind":"OBJECT","name":"FormResponseLimit","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"closeDate","description":"Object containing automatic form closure configuration.","args":[],"type":{"kind":"OBJECT","name":"FormCloseDate","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"preSubmissionView","description":"Object containing welcome screen configuration displayed before the form.","args":[],"type":{"kind":"OBJECT","name":"FormPreSubmissionView","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"afterSubmissionView","description":"Object containing settings for the post-submission user experience.","args":[],"type":{"kind":"OBJECT","name":"FormAfterSubmissionView","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"monday","description":"Object containing board settings for response handling.","args":[],"type":{"kind":"OBJECT","name":"FormMonday","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormFeaturesInput","description":"Form features configuration including security, limits, and access controls.","fields":null,"inputFields":[{"name":"reCaptchaChallenge","description":"Boolean enabling reCAPTCHA verification to prevent spam submissions.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"draftSubmission","description":"Object containing draft saving configuration allowing users to save progress.","type":{"kind":"INPUT_OBJECT","name":"FormDraftSubmissionInput","ofType":null},"defaultValue":null},{"name":"requireLogin","description":"Object containing login requirement settings for form access.","type":{"kind":"INPUT_OBJECT","name":"FormRequireLoginInput","ofType":null},"defaultValue":null},{"name":"responseLimit","description":"Object containing response limitation settings to control submission volume.","type":{"kind":"INPUT_OBJECT","name":"FormResponseLimitInput","ofType":null},"defaultValue":null},{"name":"closeDate","description":"Object containing automatic form closure configuration.","type":{"kind":"INPUT_OBJECT","name":"FormCloseDateInput","ofType":null},"defaultValue":null},{"name":"preSubmissionView","description":"Object containing welcome screen configuration displayed before the form.","type":{"kind":"INPUT_OBJECT","name":"FormPreSubmissionViewInput","ofType":null},"defaultValue":null},{"name":"afterSubmissionView","description":"Object containing settings for the post-submission user experience.","type":{"kind":"INPUT_OBJECT","name":"FormAfterSubmissionViewInput","ofType":null},"defaultValue":null},{"name":"monday","description":"Object containing board settings for response handling.","type":{"kind":"INPUT_OBJECT","name":"FormMondayInput","ofType":null},"defaultValue":null},{"name":"password","description":"Object containing password protection configuration for the form.","type":{"kind":"INPUT_OBJECT","name":"FormPasswordInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FormFontSize","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Small","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Medium","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Large","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"FormFormat","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"OneByOne","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Classic","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FormLayout","description":"Object containing form structure and presentation settings.","fields":[{"name":"format","description":"String specifying the form display format. Can be a step by step form or a classic one page form.","args":[],"type":{"kind":"ENUM","name":"FormFormat","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"alignment","description":"String controlling text and content alignment.","args":[],"type":{"kind":"ENUM","name":"FormAlignment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"direction","description":"String setting reading direction.","args":[],"type":{"kind":"ENUM","name":"FormDirection","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormLayoutInput","description":"Object containing form structure and presentation settings.","fields":null,"inputFields":[{"name":"format","description":"String specifying the form display format. Can be a step by step form or a classic one page form.","type":{"kind":"ENUM","name":"FormFormat","ofType":null},"defaultValue":null},{"name":"alignment","description":"String controlling text and content alignment.","type":{"kind":"ENUM","name":"FormAlignment","ofType":null},"defaultValue":null},{"name":"direction","description":"String setting reading direction.","type":{"kind":"ENUM","name":"FormDirection","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormLogo","description":"Object containing logo display configuration for form branding.","fields":[{"name":"position","description":"String specifying logo placement (\"top\", \"bottom\", \"header\").","args":[],"type":{"kind":"ENUM","name":"FormLogoPosition","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"URL pointing to the logo image file for display on the form.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"size","description":"String specifying logo size (\"small\", \"medium\", \"large\") for the logo that appears on the header of the form.","args":[],"type":{"kind":"ENUM","name":"FormLogoSize","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormLogoInput","description":"Object containing logo display configuration for form branding.","fields":null,"inputFields":[{"name":"position","description":"String specifying logo placement (\"top\", \"bottom\", \"header\").","type":{"kind":"ENUM","name":"FormLogoPosition","ofType":null},"defaultValue":null},{"name":"size","description":"String specifying logo size (\"small\", \"medium\", \"large\") for the logo that appears on the header of the form.","type":{"kind":"ENUM","name":"FormLogoSize","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FormLogoPosition","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Auto","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Left","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Center","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Right","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"FormLogoSize","description":"Available logo sizes for form branding","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Small","description":"Small logo size for compact form branding, height of 32px, width will be scaled to maintain aspect ratio","isDeprecated":false,"deprecationReason":null},{"name":"Medium","description":"Medium logo size for standard form branding, height of 40px, width will be scaled to maintain aspect ratio","isDeprecated":false,"deprecationReason":null},{"name":"Large","description":"Large logo size for prominent form branding, height of 72px, width will be scaled to maintain aspect ratio","isDeprecated":false,"deprecationReason":null},{"name":"ExtraLarge","description":"Extra large logo size for maximum form branding impact, height of 96px, width will be scaled to maintain aspect ratio","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FormMonday","description":null,"fields":[{"name":"itemGroupId","description":"The board group ID where new items from form responses will be created.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"includeNameQuestion","description":"Boolean adding a name question to the form. This is a special question type that represents the name column from the associated monday board","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"includeUpdateQuestion","description":"Boolean adding an update/comment field to the form. This is a special question type that represents the updates from the associated item of the submission on the monday board. ","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"syncQuestionAndColumnsTitles","description":"Boolean synchronizing form question titles with board column names. When true, the form question titles will be synchronized with the board column names.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormMondayInput","description":"Object containing board settings for response handling.","fields":null,"inputFields":[{"name":"itemGroupId","description":"The board group ID where new items from form responses will be created.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"includeNameQuestion","description":"Boolean adding a name question to the form. This is a special question type that represents the name column from the associated monday board","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"includeUpdateQuestion","description":"Boolean adding an update/comment field to the form. This is a special question type that represents the updates from the associated item of the submission on the monday board. ","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"syncQuestionAndColumnsTitles","description":"Boolean synchronizing form question titles with board column names. When true, the form question titles will be synchronized with the board column names.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormPassword","description":null,"fields":[{"name":"enabled","description":"Boolean disabling password protection. Can only be updated to false, to enable password protection, use the set_form_password mutation instead.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormPasswordInput","description":"Password configuration for the form. Only setting enabled to false is supported. To enable a form to be password protected, please use the set_form_password mutation instead.","fields":null,"inputFields":[{"name":"enabled","description":"Boolean disabling password protection. Can only be updated to false, to enable password protection, use the set_form_password mutation instead.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormPreSubmissionView","description":null,"fields":[{"name":"enabled","description":"Boolean showing a welcome/introduction screen before the form begins.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"Text displayed as the title on the welcome screen.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"Text providing context or instructions on the welcome screen.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"startButton","description":"Object containing start button configuration for the welcome screen.","args":[],"type":{"kind":"OBJECT","name":"FormStartButton","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormPreSubmissionViewInput","description":"Object containing welcome screen configuration displayed before the form.","fields":null,"inputFields":[{"name":"enabled","description":"Boolean showing a welcome/introduction screen before the form begins.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"title","description":"Text displayed as the title on the welcome screen.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"Text providing context or instructions on the welcome screen.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"startButton","description":"Object containing start button configuration for the welcome screen.","type":{"kind":"INPUT_OBJECT","name":"FormStartButtonInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormQuestion","description":null,"fields":[{"name":"id","description":"The unique identifier for the question. Used to target specific questions within a form.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The question type determining input behavior and validation (e.g., \"text\", \"email\", \"single_select\", \"multi_select\").","args":[],"type":{"kind":"ENUM","name":"FormQuestionType","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"visible","description":"Boolean controlling question visibility to respondents. Hidden questions remain in form structure but are not displayed.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The question text displayed to respondents. Must be at least 1 character long and clearly indicate the expected response.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"Optional explanatory text providing additional context, instructions, or examples for the question.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"required","description":"Boolean indicating if the question must be answered before form submission.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"settings","description":null,"args":[],"type":{"kind":"OBJECT","name":"FormQuestionSettings","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"options","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FormQuestionOption","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"showIfRules","description":null,"args":[],"type":{"kind":"SCALAR","name":"JSON","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormQuestionOption","description":null,"fields":[{"name":"label","description":"The display text for individual option choices in select-type questions.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FormQuestionPrefillSources","description":"Sources for prefilling question values","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Account","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"QueryParam","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"FormQuestionSelectDisplay","description":"Display options for select-type questions","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Horizontal","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Vertical","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Dropdown","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"ENUM","name":"FormQuestionSelectOrderByOptions","description":"Ordering options for select question options","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Alphabetical","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Random","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Custom","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FormQuestionSettings","description":"Question-specific configuration object that varies by question type.","fields":[{"name":"prefill","description":"Configuration for automatically populating question values from various data sources such as user account information or URL query parameters.","args":[],"type":{"kind":"OBJECT","name":"PrefillSettings","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"prefixAutofilled","description":"Phone questions only: Automatically detect and fill the phone country prefix based on the user's geographic location or browser settings.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"prefixPredefined","description":"Phone questions only: Configuration for setting a specific predefined phone country prefix that will be pre-selected for users.","args":[],"type":{"kind":"OBJECT","name":"PhonePrefixPredefined","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"checkedByDefault","description":"Boolean/checkbox questions only: Whether the checkbox should be checked by default when the form loads.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"defaultCurrentDate","description":"Date based questions only: Automatically set the current date as the default value when the form loads.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"includeTime","description":"Date questions only: Whether to include time selection (hours and minutes) in addition to the date picker. When false, only date selection is available.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"display","description":"Single/Multi Select questions only: Controls how the selection options are visually presented to users.","args":[],"type":{"kind":"ENUM","name":"FormQuestionSelectDisplay","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"optionsOrder","description":"Single/Multi Select questions only: Determines the ordering of selection options.","args":[],"type":{"kind":"ENUM","name":"FormQuestionSelectOrderByOptions","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locationAutofilled","description":"Location questions only: Automatically detect and fill the user's current location using browser geolocation services, requiring user permission.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"limit","description":"Rating questions only: Maximum rating value that users can select.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"skipValidation","description":"Link/URL questions only: Whether to skip URL format validation, allowing any text input.","args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormQuestionSettingsInput","description":"Question-specific configuration object that varies by question type.","fields":null,"inputFields":[{"name":"prefill","description":"Configuration for automatically populating question values from various data sources such as user account information or URL query parameters.","type":{"kind":"INPUT_OBJECT","name":"PrefillSettingsInput","ofType":null},"defaultValue":null},{"name":"prefixAutofilled","description":"Phone questions only: Automatically detect and fill the phone country prefix based on the user's geographic location or browser settings.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"prefixPredefined","description":"Phone questions only: Configuration for setting a specific predefined phone country prefix that will be pre-selected for users.","type":{"kind":"INPUT_OBJECT","name":"PhonePrefixPredefinedInput","ofType":null},"defaultValue":null},{"name":"checkedByDefault","description":"Boolean/checkbox questions only: Whether the checkbox should be checked by default when the form loads.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"defaultCurrentDate","description":"Date based questions only: Automatically set the current date as the default value when the form loads.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"includeTime","description":"Date questions only: Whether to include time selection (hours and minutes) in addition to the date picker. When false, only date selection is available.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"display","description":"Single/Multi Select questions only: Controls how the selection options are visually presented to users.","type":{"kind":"ENUM","name":"FormQuestionSelectDisplay","ofType":null},"defaultValue":null},{"name":"optionsOrder","description":"Single/Multi Select questions only: Determines the ordering of selection options.","type":{"kind":"ENUM","name":"FormQuestionSelectOrderByOptions","ofType":null},"defaultValue":null},{"name":"labelLimitCount","description":"Multi Select questions only: Limits the number of options a user can select.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"locationAutofilled","description":"Location questions only: Automatically detect and fill the user's current location using browser geolocation services, requiring user permission.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"skipValidation","description":"Link/URL questions only: Whether to skip URL format validation, allowing any text input.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"FormQuestionType","description":"The type of the question (ex. text, number, MultiSelect etc.)","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"Boolean","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ConnectedBoards","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Country","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Date","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DateRange","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Email","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"File","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Link","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Location","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"LongText","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MultiSelect","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Name","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Number","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"People","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Phone","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Rating","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ShortText","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Signature","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SingleSelect","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Subitems","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"Updates","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"FormRedirectAfterSubmission","description":null,"fields":[{"name":"enabled","description":"Boolean enabling automatic redirect after form completion to a specified URL.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"redirectUrl","description":"The URL where users will be redirected after successfully submitting the form.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormRedirectAfterSubmissionInput","description":"Object containing redirect configuration after form submission.","fields":null,"inputFields":[{"name":"enabled","description":"Boolean enabling automatic redirect after form completion to a specified URL.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"redirectUrl","description":"The URL where users will be redirected after successfully submitting the form.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormRequireLogin","description":null,"fields":[{"name":"enabled","description":"Boolean requiring users to be logged in before submitting responses.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"redirectToLogin","description":"Boolean automatically redirecting unauthenticated users to the login page.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormRequireLoginInput","description":"Object containing login requirement settings for form access.","fields":null,"inputFields":[{"name":"enabled","description":"Boolean requiring users to be logged in before submitting responses.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"redirectToLogin","description":"Boolean automatically redirecting unauthenticated users to the login page.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormResponseLimit","description":null,"fields":[{"name":"enabled","description":"Boolean enabling response count limits for the form.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"limit","description":"Integer specifying the maximum number of responses allowed.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormResponseLimitInput","description":"Object containing response limitation settings to control submission volume.","fields":null,"inputFields":[{"name":"enabled","description":"Boolean enabling response count limits for the form.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"limit","description":"Integer specifying the maximum number of responses allowed.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormShortenedLink","description":null,"fields":[{"name":"enabled","description":"Boolean enabling generation of shortened URLs for the form.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":"The generated shortened URL for form access. Only available when shortened links are enabled.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormStartButton","description":null,"fields":[{"name":"text","description":"Custom text for the button that begins the form experience.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormStartButtonInput","description":"Object containing start button configuration for the welcome screen.","fields":null,"inputFields":[{"name":"text","description":"Custom text for the button that begins the form experience.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormSubmitButton","description":"Object containing submit button styling and text configuration.","fields":[{"name":"text","description":"Custom text displayed on the form submission button.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormSubmitButtonInput","description":"Object containing submit button styling and text configuration.","fields":null,"inputFields":[{"name":"text","description":"Custom text displayed on the form submission button.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormTag","description":null,"fields":[{"name":"id","description":"The unique identifier for the tag","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":"The name of the tag","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"value","description":"The value of the tag","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"columnId","description":"The ID of the column this tag is associated with","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FormText","description":"Object containing typography and text styling configuration.","fields":[{"name":"font","description":"String specifying the font family used throughout the form.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"color","description":"Hex color code for the text color in the form.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"size","description":"String or number specifying the base font size for form text.","args":[],"type":{"kind":"ENUM","name":"FormFontSize","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FormTextInput","description":"Object containing typography and text styling configuration.","fields":null,"inputFields":[{"name":"font","description":"String specifying the font family used throughout the form.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"color","description":"Hex color code for the text color in the form.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"size","description":"String or number specifying the base font size for form text.","type":{"kind":"ENUM","name":"FormFontSize","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PhonePrefixPredefined","description":"Phone questions only: Configuration for setting a specific predefined phone country prefix that will be pre-selected for users.","fields":[{"name":"enabled","description":"Whether a predefined phone prefix is enabled for phone number questions. When true, the specified prefix will be pre-selected.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"prefix","description":"The predefined phone country prefix to use as country code in capital letters (e.g., \"US\", \"UK\", \"IL\"). Only used when enabled is true.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PhonePrefixPredefinedInput","description":"Phone questions only: Configuration for setting a specific predefined phone country prefix that will be pre-selected for users.","fields":null,"inputFields":[{"name":"enabled","description":"Whether a predefined phone prefix is enabled for phone number questions. When true, the specified prefix will be pre-selected.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"prefix","description":"The predefined phone country prefix to use as country code in capital letters (e.g., \"US\", \"UK\", \"IL\"). Only used when enabled is true.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PrefillSettings","description":"Configuration for automatically populating question values from various data sources such as user account information or URL query parameters.","fields":[{"name":"enabled","description":"Whether prefill functionality is enabled for this question. When true, the question will attempt to auto-populate values from the specified source.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"source","description":"The data source to use for prefilling the question value. Check the PrefillSources for available options.","args":[],"type":{"kind":"ENUM","name":"FormQuestionPrefillSources","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"lookup","description":"The specific field or parameter name to lookup from the prefill source. For account sources, this would be a user property like \"name\" or \"email\". For query parameters, this would be the parameter name that would be set in the URL.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"PrefillSettingsInput","description":"Configuration for automatically populating question values from various data sources such as user account information or URL query parameters.","fields":null,"inputFields":[{"name":"enabled","description":"Whether prefill functionality is enabled for this question. When true, the question will attempt to auto-populate values from the specified source.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"source","description":"The data source to use for prefilling the question value. Check the PrefillSources for available options.","type":{"kind":"ENUM","name":"FormQuestionPrefillSources","ofType":null},"defaultValue":null},{"name":"lookup","description":"The specific field or parameter name to lookup from the prefill source. For account sources, this would be a user property like \"name\" or \"email\". For query parameters, this would be the parameter name that would be set in the URL.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"QuestionOptionInput","description":null,"fields":null,"inputFields":[{"name":"label","description":"The label to display for the option","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"QuestionOrderInput","description":null,"fields":null,"inputFields":[{"name":"id","description":"The unique identifier for the question. Used to target specific questions within a form.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResponseForm","description":null,"fields":[{"name":"id","description":"The unique identifier for the form. Auto-generated upon creation.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"token","description":"The unique identifier token for the form. Required for all form-specific operations.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"active","description":"Boolean indicating if the form is currently accepting responses and visible to users.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"title","description":"The display title shown to users at the top of the form.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ownerId","description":"The ID of the user who created and owns this form. Determines permissions.","args":[],"type":{"kind":"SCALAR","name":"Int","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"builtWithAI","description":"Boolean indicating if this form was built using monday’s AI form builder agent.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":"Optional detailed description explaining the form purpose, displayed below the title.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"questions","description":"Array of question objects that make up the form content, in display order.","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FormQuestion","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"isAnonymous","description":"Boolean indicating if responses are collected without identifying the submitter.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":"The category or classification of the form for organizational purposes.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"features","description":"Object containing feature toggles and settings like password protection, response limits, etc.","args":[],"type":{"kind":"OBJECT","name":"FormFeatures","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"appearance","description":"Object containing visual styling settings including colors, fonts, layout, and branding.","args":[],"type":{"kind":"OBJECT","name":"FormAppearance","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"accessibility","description":"Object containing accessibility settings such as language, alt text, and reading direction.","args":[],"type":{"kind":"OBJECT","name":"FormAccessibility","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tags","description":"Array of tracking tags for categorization and analytics (e.g., UTM parameters for marketing tracking).","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FormTag","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"SetFormPasswordInput","description":"Input type for setting a form password","fields":null,"inputFields":[{"name":"password","description":"The password to set for the form. Must be at least 1 character long.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateFormInput","description":null,"fields":null,"inputFields":[{"name":"title","description":"The title text for the form. Must be at least 1 character long.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":"Optional description text providing context about the form purpose.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"questions","description":"Ordered array of dehydrated questions, object only including each question ID, for reordering. Must include all existing question IDs.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"QuestionOrderInput","ofType":null}}},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateFormSettingsInput","description":null,"fields":null,"inputFields":[{"name":"features","description":"Object containing form features including but not limited to password protection, response limits, login requirements, etc.","type":{"kind":"INPUT_OBJECT","name":"FormFeaturesInput","ofType":null},"defaultValue":null},{"name":"appearance","description":"Object containing visual styling including colors, layout, fonts, and branding elements.","type":{"kind":"INPUT_OBJECT","name":"FormAppearanceInput","ofType":null},"defaultValue":null},{"name":"accessibility","description":"Object containing accessibility options such as language, alt text, etc.","type":{"kind":"INPUT_OBJECT","name":"FormAccessibilityInput","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateFormTagInput","description":null,"fields":null,"inputFields":[{"name":"value","description":"The value of the tag","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateQuestionInput","description":null,"fields":null,"inputFields":[{"name":"type","description":"The question type determining input behavior and validation (e.g., \"text\", \"email\", \"single_select\", \"multi_select\").","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"FormQuestionType","ofType":null}},"defaultValue":null},{"name":"description","description":"Optional explanatory text providing additional context, instructions, or examples for the question.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"visible","description":"Boolean controlling question visibility to respondents. Hidden questions remain in form structure but are not displayed.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"required","description":"Boolean indicating if the question must be answered before form submission.","type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"settings","description":"Question-specific configuration object that varies by question type.","type":{"kind":"INPUT_OBJECT","name":"FormQuestionSettingsInput","ofType":null},"defaultValue":null},{"name":"title","description":"The question text displayed to respondents. Must be at least 1 character long and clearly indicate the expected response.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"policy__Policy","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"types","description":"A list of all types supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":"The type that query operations will be rooted at.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":"If this server supports mutation, the type that mutation operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":"If this server support subscription, the type that subscription operations will be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"directives","description":"A list of all directives supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Directive","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.","fields":[{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"specifiedByURL","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isOneOf","description":null,"args":[],"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Indicates this type is a union. `possibleTypes` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Indicates this type is an enum. `enumValues` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Indicates this type is an input object. `inputFields` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":"Indicates this type is a list. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":"Indicates this type is a non-null. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultValue","description":"A GraphQL-formatted string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.","fields":[{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isRepeatable","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"QUERY","description":"Location adjacent to a query operation.","isDeprecated":false,"deprecationReason":null},{"name":"MUTATION","description":"Location adjacent to a mutation operation.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIPTION","description":"Location adjacent to a subscription operation.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD","description":"Location adjacent to a field.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_DEFINITION","description":"Location adjacent to a fragment definition.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_SPREAD","description":"Location adjacent to a fragment spread.","isDeprecated":false,"deprecationReason":null},{"name":"INLINE_FRAGMENT","description":"Location adjacent to an inline fragment.","isDeprecated":false,"deprecationReason":null},{"name":"VARIABLE_DEFINITION","description":"Location adjacent to a variable definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCHEMA","description":"Location adjacent to a schema definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":"Location adjacent to a scalar definition.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Location adjacent to an object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_DEFINITION","description":"Location adjacent to a field definition.","isDeprecated":false,"deprecationReason":null},{"name":"ARGUMENT_DEFINITION","description":"Location adjacent to an argument definition.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Location adjacent to an interface definition.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Location adjacent to a union definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Location adjacent to an enum definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM_VALUE","description":"Location adjacent to an enum value definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Location adjacent to an input object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_FIELD_DEFINITION","description":"Location adjacent to an input object field definition.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null}],"directives":[{"name":"cost","description":null,"locations":["ARGUMENT_DEFINITION","ENUM","FIELD_DEFINITION","INPUT_FIELD_DEFINITION","OBJECT","SCALAR"],"args":[{"name":"weight","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"defaultValue":null}]},{"name":"listSize","description":null,"locations":["FIELD_DEFINITION"],"args":[{"name":"assumedSize","description":null,"type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"slicingArguments","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"sizedFields","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null},{"name":"requireOneSlicingArgument","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"true"}]},{"name":"policy","description":null,"locations":["FIELD_DEFINITION","OBJECT","INTERFACE","SCALAR","ENUM"],"args":[{"name":"policies","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"policy__Policy","ofType":null}}}}}},"defaultValue":null}]},{"name":"include","description":"Directs the executor to include this field or fragment only when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Included when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]},{"name":"specifiedBy","description":"Exposes a URL that specifies the behavior of this scalar.","locations":["SCALAR"],"args":[{"name":"url","description":"The URL that specifies the behavior of this scalar.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}]},{"name":"oneOf","description":"Indicates exactly one field must be supplied and this field must not be `null`.","locations":["INPUT_OBJECT"],"args":[]}]}}}