Welcome to the new monday developer community
-
Recently active
Hello All! I have a query running against a Board, it pulls the items_page results. I just finished migrating the code from the 2023-07 version to the 2023-10 version. But now I noticed that 2 of the fields used to return values in the 2023-07 results, but now return a blank value for the 2023-10 results. I don’t know if I am using the proper terminology, but it seems as if these fields are setup to have the user choose from other Boards being Linked to this particular field. For example, the field “Referral Source”, if you click on it to choose a value: The user can select from multiple other boards, to then search in that board of choice for the value they want to appear in this cell as the Referral Source. So my question is, how do you query to bring along these selected values coming from the other boards? I’m assuming they may be consider Linked Items? But the “linked_items” function does not 100% seem to align in its explanation, or I’m just hoping thats false since it looks li
Can monday.com marketplace app developers integrate and utilize external paid APIs (e.g., OpenAI, LinkedIn, Twitter) within their apps, effectively acting as intermediaries to provide services to monday.com marketplace users? Concerns relate to compliance and security. Thank you.
Hey Community, We are looking to buy an app with traction. If anyone is interested in selling please let me know at adi@piricgroup.com Thanks and happy coding!
Hello all, I’m working on a custom action to be used with a recipe. However, when I read through the documentation at Custom actions, it seems like my endpoint should return only with a 200 and everything else is considered an error by monday.com as demonstrated by the fact that it will keep retrying the requests for next 30 mins. My question is would it be possible to run custom javascript as part of an action, for instance, opening a new browser tab on button click?
Hey All, The script I was using to send a board’s data into a Google Sheet has stopped working suddenly. I presume this is because of the API changes. I am not a developer and wondered if anyone can assist me in trying to repair the code so that the query works again. The below code in bold is where the error is occurring, stating the following “TypeError: Cannot read properties of undefined (reading ‘boards’) downloadMondayBoard” // Add column headers if not added yet if (headers.length <= 2) { data.data.boards[0].items_page_by_column_values[0].column_values.forEach(function(column) { headers.push(column.title); }); sheet.appendRow(headers); }
New to graphql i need to read all the values for a given row based on the value of a particular column. Please point me in the right direction
Hi developers and monday team, I am Rasil Baidar from Jobflows. I have a question to ask. Recently one of my client’s trail for Jobflows has ended and we are saving the subscription data of the client in our Backend API service to manage our business logic. Since the clients trail subscription has ended, we want to extend the clients subscription manually from our Developer console. Doing so does not call our API service. This is causing a lot of manual work for developers as we will need to manually create subscription data on our database. This is a lot of headache. How to solve this issue?
Hi, We set up few workflows to export data from monday.com to external DB using GraphQL. There are scenarios where we create items on board and deletes them later, but they will be export to Database using above work flow. We need to identify deleted items from board and make sure they are deleted from DB as well. I am trying to use below GraphQL to finidout the activity on board but it’s returning all types of events. Is there a way to filter out using GraphQL and export only event=‘delete_pulse’ records ? Can you please advise how we can alter below query to get only required event types. Thanks & Regards, Madhu Kolli
Hi I am from BigPicture. I would like to register all types of webhooks for given board including subitems. Currently I am not able to register webhooks for subitems if that board didn’t contain subitems before. Is there any other way to be informed that any subitem has been added to board if we didn’t register such webhook before? Best regards Przemek Banasik
I want to retrieve the replies in conversations. Is there a way to do this through the monday.com API? Perhaps by passing the board URL and ID?
Hi, I am testing DocuGen to streamline my process. I have successfully created some files using this platform. However, I have not been able to set up the click me button yet (Integration recipe). I am following this tutorial (1540) Get Started on DocuGen in 6 Minutes - YouTube, but the recipe is not loading to be set it up. I I have waited more than 10 min and the integration recipe is not loading. Is there another way to achieve this task? Thanks for your help. Norma Osorio
I need to update the title of an item in my app when a user changes it in another view. I see that there is a method called monday.listen, which takes “event” as an input. This listener gets triggered when a new item is added, or a column value is changed. But it is not fired for other common events like Updating the title of an item Removing an item Is there a plan to add these, or an alternative workaround?
I need to add a date to a date column when I create an item on a board. Here is my code. It does add the item, but the date field is left blank. Any help is greatly appreciated. mutation { create_item (board_id: 6137175354, item_name: “Bills New Item22”, column_values: “{"date":"2023-05-25"}”) { id } }
Hi, how can the actual values be pulled with an API query rather then just the ids of dropdowns or other similar column types? Thank you
Hi. Why no values are returned for an API query where values were calculated by formulas? I pull data from a board and there are some columns of type ‘formula’, so no data is returned for them Thank you
Hi, I need to present an error message to the user when certain error conditions happen while an integration is runninng. I tried with posting severity errors as described in the error handling document and in fact i get the notifications but only in the notification center. I don’t get an alert when the condition happens. Is this expected or not ? Is there any way in order to trigger an alert to be presented for the user to take action ? Thanks in advance.
GraphQL API
Hi, mates. I can fetch items with only non completed status with my query. This is strange as I have no rules applied for the items_page object in my query. What might cause this behaviour? query { boards(ids: 2360058426) { items_count items_page { items { group { title id } name state subitems { name column_values { column {title id} value type } } } } } }
Hi, I am trying to use components from Monday’s Vibe design system (https://style.monday.com/), but I am a bit confused. In some examples for a handful of components I see references to cx and styles, but I don’t know how to import these in my React App.js file. For instance for the Text component I see the following example: <Text element="div" className={cx(styles.smallRectangle)} style={{ backgroundColor: "black" }} align={Text.align.CENTER} color={Text.colors.FIXED_LIGHT}> Fixed light </Text> I am able to import Text but I don’t know how to import the functions or components for cx(styles.smallRectangle) Could you please help. Thanks.
I just built an integration app, and I want to get a search string from the search box of the Map App. Please refer to the images below. If there is an automation something like this, then I can get a search string from the search box. (i.e, when the search string of search box changes, then …make some action…) I hope this is possible. I look forward to hearing good news from you. Thank you
Hi all, I would like to customize the current Kanban view to by creating my own app. Are there code templates of the current board views? There are only 3 templates to select from when creating a new feature in my app and working with the existing Kanban view code would be significantly helpful.
Hey guys, My script/query has been running like clockwork for the last couple of weeks without any issues. It’s a basic query with some filters, applies a sum and spits out the total number. In the last few days (I cant exactly say when as I’ve been off from work), it’s been returning 0 value. A bit of debugging shows a date filter in line 6 to be the culprit. The whole query looks like this: { boards (ids: ***){ items_page (limit: 500, query_params: {rules: [{column_id: “group”, compare_value: [“topics”], operator:any_of} {column_id: “date2”, compare_value: [“$$$blank$$$”], operator:any_of} {column_id: “project_area”, compare_value: [“Farleigh”], operator: not_contains_text} {column_id: “status0”, compare_value: [5], operator: not_any_of} {column_id: “status_25”, compare_value: [1], operator: not_any_of} {column_id: “status_25”, compare_value: [10], operator: not_any_of} {column_id: “status_1”, compare_value: [15], operator: not_any_of} {column_id: “status04”, compare_value: [3], o
I’m using GraphQL to get a list of all items associated with a board. It is working well. { boards(ids: 5193886955) { name items_page(limit: 100) { cursor items { id name state } } } } Returns: { “data”: { “boards”: [ { “name”: “Technology Project Portfolio”, “items_page”: { “cursor”: null, “items”: [ { “id”: “5699277284”, “name”: “Oracle TMS Program”, “state”: “active” }, etc, etc, etc I also need to return the current value of “Stage Gate” for each item. When I view the projects/items in Monday.com app, one of the columns listed is stage gate. I can’t seem to find a field I can add to the GraphQL request to return the stage gate. Any help would be appreciated.
Hi there, Just wondering if there is an easy way to return all tasks /items that have a specific priority value (ie ‘blocker’) across all boards and workspaces we have access to via the API. We have hundreds of boards so looking to avoid querying by individual board. Thanks
Hi - I am not an experienced query writer and just need my favourite query updated to use the new API. Can anyone update this one for me? Ta! let Key = “”, Board = “”, Source = Web.Contents( “https://api.monday.com/v2”, [ Headers=[ #“Method”=“POST”, #“Content-Type”=“application/json”, #“Authorization”=“Bearer " & Key ], Content=Text.ToBinary(”{““query””: ““query { boards(ids: " & Board & “) { items { id, name, updated_at, group { title }, columns: column_values { title, text } } } }””}”) ] ), Data = Table.FromList(Json.Document(Source)[data][boards]{0}[items], Record.FieldValues, {“ID”, “Title”, “UpdatedAt”, “Group”, “Columns”}), #“Monday” = Table.FromRecords(Table.TransformRows(Data, each List.Accumulate([Columns], [ ID = [ID], Title = [Title], UpdateDate = [UpdatedAt], Group = [Group][title] ], (state, current) => Record.AddField(state, current[title], current[text]) ) )) in #“Monday”
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.