Skip to main content
Solved

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

  • September 15, 2020
  • 2 replies
  • 485 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!

View original
Did this topic help you find an answer to your question?

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

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


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings