Hey everyone! I’m trying to get all the late cards from a specific pipe. At the moment, i’m using this code here, that gives me all the cards from the pipe and then, on my editor, i filter the late ones:
{allCards(pipeId: XXXXXXXX, first: 50)
{pageInfo {
hasNextPage
endCursor
}
edges {
node {
id
late
current_phase{
id}
}
}
}
}
Is there a way that i can get only the late cards? Like a request that only returns the late cards, an their respectives id and current phase?