This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The following files are the three functions and a query that can be used to retrieve data from a Monday.com board | |
using the new 2023-10 API and Cursor-based pagination. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Playing around with a PowerBI query to pull data from monday.com into PowerBI | |
// This can come in handy when building PowerBI reports that utilize GraphQL endpoints for loading data. | |
let | |
Source = Web.Contents("https://api.monday.com/", | |
[ | |
RelativePath="v2", | |
Headers=[ | |
#"Method"="POST", | |
#"Content-Type"="application/json", |