I'm learning graphQL and currently I need to query all the cards in a phase, however, I'm having great difficulty, can anyone instruct me with a query?
Solved
Phases - consult cards by phase
Best answer by Lais Laudari
If you use the query like this below, you can bring up all the cards in all the phases, and filter manually from there:query
{
pipe (id: xxxxxxx)
{
phases {
id
name
cards
{
edges
{
node
{
id
title
}
}
}
}
}
}
Reply
Rich Text Editor, editor1
Editor toolbars
Press ALT 0 for help
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.