Solved

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

  • 15 September 2020
  • 2 replies
  • 377 views

Userlevel 5

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

icon

Best answer by Roberto Chavarria 15 September 2020, 16:54

View original

2 replies

Userlevel 6
Badge +5

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!

Userlevel 6
Badge +7

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.

 

Reply