Solved

Changelog export (not power bi)

  • 3 January 2022
  • 2 replies
  • 34 views

Hi, 

I’ve seen that it’s possible to export changelog if you have Power BI. But if you don’t use Power BI, is there any other way to export/download all historical events on a card? 

Thankful for tips!

 

Best regards Hana

icon

Best answer by allanpavani 6 January 2022, 15:41

View original

2 replies

Userlevel 7
Badge +15

@hana-kang 

You can access it via GraphyQL: https://app.pipefy.com/graphiql

To extract it, I recommend using Python.


Example:

{
allCards(pipeId: 301698889, first: 1) {
edges {
node {
id
updated_at
phases_history {
became_late
created_at
draft
duration
firstTimeIn
lastTimeIn
lastTimeOut
}
}

}
pageInfo {
endCursor
startCursor
}
}
}

Result:

 

Userlevel 4

Hi there, Hana! Hope you’re doing great today :) 

I’m Allan from Pipefy’s Support Team.

 

Are these “events” the activities on your card, right?

Actually, there isn’t a way of downloading/exporting the comments from the UI. But that’s a great idea, indeed! I’m gonna talk to our product development team, asking them to analyze the possibility of developing it in the future.

 

If you have any more questions, please let us know!

You can also open a chat with us, and we’ll be very happy to help.

 

Have a nice day!

Reply