I'd like to retrieve all fields that correspond to a new card from a specific column in my pipe. It's possible?
Solved
Is it possible to retrieve all fields (card) in a column?
Best answer by Roberto Chavarria
Hi there Nigel! You can find the information of all the cards inside of the phase, but not of one specific card in a specific phase. To do the former:
{
phase(id:123456){
cards{
edges{
node{
title
id
fields{
value
name
}
}
}
}
}
}
and to find the field value information of only 1 specific card:
{
card(id:123456789){
fields{
name
value
}
}
}
Hope this helps!
Reply
Join us in the Pipefy Community! 🚀
No account yet? Create an account
Login with your Pipefy credentials
or
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.