Finding Pictures of a Task's People

I have a fairly simple problem that I can’t find the right combination for graphQL. I have a board that I query data from. One of the columns of the board are people, but they give me their name instead of a userId. How am I supposed to get their user information so that I can get their profile pictures to display in an avatar?

Thanks,
Jeremy

Hello @jBoetticher!

If this is a people column, you will be able to get the userId with a query like this one:

{
  items(ids:1234567890){
    column_values(ids:"people_1"){
      value
    }
  }
}

Is this what you are looking for?

Cheers,
Matias

Hi! That did help. I was missing the “value” within the query. I can’t help but wonder if there’s an easier way of getting the pictures of users on the board!

1 Like

In this case @jBoetticher, you will always need the user ID for this :slightly_smiling_face:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.