Querying Multiple Keys of JSONB

Hello, in the Supabase Docs, we have this syntax to query JSONB key, which is ->.
const { data, error } = await supabase
  .from('users')
  .select(`
    id, name,
    address->city
  `)

If we want to query multiple keys of JSONB, how can I do that? Can I do something like this to prevent repetitive?
address -> (city, district, postcode)
Was this page helpful?