Back to AllNew `voters` field on `VoteValue` February 1st, 2024 You can now query the voters field on the VoteValue implementation to return a list of users who voted. This field is available in API versions 2024-04 and later. GraphQLquery { items (ids:[1234567890, 9876543210]) { column_values { ... on VoteValue { vote_count voter_ids voters } } } }