Skip to main content
Solved

Filter Phases the Card Can Move | GraphQL

  • September 19, 2022
  • 1 reply
  • 228 views

Tegrus

Hi guys, good afternoon! How are you?

In GraphQL, is it possible to filter on a card which phases can be moved?

Best answer by julia-pinheiro

Hi Tegrus,

You can use this query to help you:

{
pipe(id:xxxxxxxxx)
{
phases{
name
cards_can_be_moved_to_phases {
name
id
}
}
}
}

 

1 reply

julia-pinheiro
Pipefy Staff
Forum|alt.badge.img+1
  • Pipefy Staff
  • 39 replies
  • Answer
  • September 20, 2022

Hi Tegrus,

You can use this query to help you:

{
pipe(id:xxxxxxxxx)
{
phases{
name
cards_can_be_moved_to_phases {
name
id
}
}
}
}