Published
Edited
Apr 30, 2019
2 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
taco = fetch('https://api.trello.com/1/members/taco?fields=avatarUrl,fullName,initials,username,idBoards')
.then(resp => resp.json())
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
you = fetch(`https://api.trello.com/1/members/${username || 'taco'}?fields=avatarUrl,fullName,initials,username,idBoards`)
.then(resp => resp.json())
Insert cell
Insert cell
Insert cell
Insert cell
tacoBoards = fetch('https://api.trello.com/1/members/taco/boards?fields=name,shortUrl')
.then(resp => resp.json())
Insert cell
Insert cell
Insert cell
Insert cell
board = fetch(`https://api.trello.com/1/boards/${platformChangelogShortLink}?fields=name,url,shortId`)
.then(resp => resp.json())
Insert cell
Insert cell
lists = fetch(`https://api.trello.com/1/boards/${platformChangelogShortLink}/lists?filter=open&fields=name,pos`)
.then(resp => resp.json())
Insert cell
Insert cell
idUpcomingList = lists.find(l => l.name.toLowerCase() === 'upcoming').id
Insert cell
upcomingCards = fetch(`https://api.trello.com/1/lists/${idUpcomingList}/cards`)
.then(resp => resp.json())
Insert cell
idAboutCard = fetch(`https://api.trello.com/1/lists/${lists[0].id}/cards?fields=`)
.then(resp => resp.json())
.then(cards => cards[0].id)
Insert cell
Insert cell
aboutCard = fetch(
`https://api.trello.com/1/cards/${idAboutCard}?fields=name,desc,idBoard,idList,shortUrl&checklists=all&members=true`
).then(resp => resp.json())
Insert cell
Insert cell
actions = fetch(
`https://api.trello.com/1/boards/${platformChangelogShortLink}/actions?limit=10&fields=data,type,date`
).then(resp => resp.json())
Insert cell
Insert cell
actions[0].data
Insert cell
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more