Skip to main content
Solved

Is it possible to retrieve all fields (card) in a column?

  • September 15, 2020
  • 2 replies
  • 570 views

Nigel O'connell
Pipefy Staff

I'd like to retrieve all fields that correspond to a new card from a specific column in my pipe. It's possible?

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!

2 replies

Ricardo Palhares
Forum|alt.badge.img+7
  • Pipefy Certified Partner
  • 64 replies
  • September 15, 2020

Hi @Nigel O'connell 

 

All fields from start form are available in the left side of the card, but there is an option to update phase fields based on start form fields.

 

First you should “duplicate” fields from the start form in the desired phase and then you have to create an automation considering "when the card enters a phase" so "uptade a field", using start form fields to update your phase fields.

 


​Please, let me know if I have answered your question.

 


Roberto Chavarria
Pipefy Staff
Forum|alt.badge.img+5
  • Pipefy Staff
  • 46 replies
  • Answer
  • September 15, 2020

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!