--- id: maybesingle title: "maybeSingle()" slug: maybesingle custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/supabase.yml --- import Tabs from '@theme/Tabs'; import TabsPanel from '@theme/TabsPanel'; Retrieves at most one row from the result. Result must be at most one row (e.g. using `eq` on a UNIQUE column), otherwise this will result in an error. ```js const { data, error } = await supabase .from('cities') .select('name, country_id') .eq('name', 'Singapore') .maybeSingle() ``` ## Examples ### With `select()` ```js const { data, error } = await supabase .from('cities') .select('name, country_id') .eq('name', 'Singapore') .maybeSingle() ```