Reduce related column select

How can I reduce the result of fetching a related table's column down?

supabase
      .from<Subscription>('subscriptions')
      .select(
        '*, prices(*, products(*)), postcodes:postcodes_subscription!postcodes_subscription_subscription_id_fkey(post_codes)'
      )
      .in('status', ['active']);


Results in:
  ...
  "postcodes": [
            {
                "post_codes": "1234, 4567"
            }
        ]
  ...


I really just want:
  ...
  "postcodes": "1234, 4567"
  ...
Was this page helpful?