Skip to main content

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!


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


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