Skip to main content

Is it possible - through the API - to query member IDs all at once?
If so, how can I do it, I searched the documentation and didn't find it. thanks in advance

 

Hey Paulo, 

 

Yes it is. 

 

Here the query: 

 

{
organizations(ids: ORG_ID) {
name
created_at
members {
user {
id
name
}
role_name
}
}
}

 

 


Reply