Skip to main content

Hi guys! Can you help me?

I’m trying to get all cards from a phase in a pipe using GraphQL API. But, I’m can not.

Can someone give a example how to get all cards from a phase?

I read other topic in the pipefy community about this question, but, it’s not functional the solution suggested to get all cards from a phase.

Tks!

Hi, @fonseca 

 

Did you see this article?

https://community.pipefy.com/pergunte-a-comunidade-38/filtro-de-cards-em-uma-determinada-fase-via-request-na-api-1615

 


Hi guys, I’m returning here to explain for you that I discovered how to get cards from a specific phase. Follow the code below:
 

query

{

    phase(id: XXXXXXXXX)

    {

        cards(first: 30, after: "XXXXXXXXXXXXXXXXX")

        {

            pageInfo

            {

                hasNextPage

                endCursor

            }

            nodes

            {    

                fields

                {

                    name

                    value

                }    

                done  

            }

        }

    }

}


In the argument “after” you have to put te code that is showed after the first query.

If someone need help, tell me!

Tks!
 


👏👏👏


Thanks for sharing it @fonseca 😀


Reply