--- id: limit title: 'limit()' slug: limit custom_edit_url: https://github.com/supabase/supabase/edit/master/spec/supabase_js_v1_legacy.yml --- import Tabs from '@theme/Tabs' import TabItem from '@theme/TabItem' Limits the result with the specified `count`. ```js const { data, error } = await supabase .from('cities') .select('name, country_id') .limit(1) ``` ## Parameters
number
object
undefined | string