Getting data row task queue

I’m going to move some data rows to “Done” task queue, using the code:

project.move_data_rows_to_task_queue(
  data_row_ids=lb.GlobalKeys(["<external_id>","<external_id>"]), # Use "lb.UniqueIds" for "<data_row_ids>"
)

Before moving to “Done”, I want to check if they are in “In Review” and not in “To Label”.

1 Like

Hello! You can refer to this doc and use the project.get_overview() function to see the queues and the number of datarows in each queue.

1 Like