Solved

Get cards (more than one) by CARDs IDs at once?

  • 6 April 2023
  • 5 replies
  • 162 views

Userlevel 2

Hi all!

I wish to get more than one card by id at once.
Something like to passa meny CARD IDs and get all informations about this cards…

Thank you!

Saulo

icon

Best answer by Lucas Democh 11 April 2023, 15:20

View original

5 replies

Userlevel 7
Badge +9

Hi @Saulo Oliveira!
Can you give more details about how are you trying to get the cards?
Is it on the Kaban view or are you trying to do that throught GraphQl?

Userlevel 7
Badge +15

 

Hello,

To extract all IDS via query, you can adapt the code below, inserting the fields you want to see:


{ allCards (first: 1, pipeId: XXXXXXXX)
{ edges { node { pipe {

id
name

}

id
title


}


}}}

Via integrators is also possible.

Example below in Make:

In this scenario, I put two possibilities:

1) List Cards: Raises all cards in a Pipe. Depending on the volume of cards, it may be unfeasible.
2) Get a Phase: Raises all cards in a given phase.

 

Best regards.

 

Democh

Userlevel 2

Hi @Lais Laudari thank you answer.

I need to get more than onde cad information and attributes though graphql but specifying cads by ID.
Ex. Get only cards ID 11111111111, 22222222222, 33333333

Userlevel 2

Hi @democh it´s possible to specifying cads ID. I wish to get only 4 or 5 cards by ID

Userlevel 7
Badge +15

@Saulo Oliveira yes.

In integrators, it is possible to filter by ID.

Via GraphQL, you can apply filters, but it is still not possible to filter by ID.

Here are some filter possibilities via GraphQL:

 

Reply