Skip to content

Create item

The Create item method is used to add a new item to your Supabase table.

Here's how to do it:

  1. Specify the table: Start by writing the name of the table to which you want to add an item. Specifying the table in WizedThe table name in the Supabase dashboard
  2. Prepare key-value pairs: Think of these as labels and input fields. Each key matches a column in your table, and the value is the data you want to add to that column. Supabase table
  3. Match keys to table headers: Make sure the keys in your key-value pairs correspond to the headers (columns) in your table. Create Supabase Item
  4. Set values for each key that you want to add: The value part of each pair is the actual data you're adding to the table under that column. Adding multiple key-value pairs

It's essentially like filling out a form where each field is a column in your table.