Back to all functions

Supabase: Find Rows w/ Filter

Search and return information into Voiceflow from Supabase using filters.

Created By
Muhammad Dabeer
Community
download-icon
INPUT VARIABLES
{
apikey
}
your supabase API key
{
subdomain
}
your supabase subdomain
{
tablename
}
the table being looked up
{
filterColumn
}
the column being filtered on
{
filterOperator
}
Any from: eq (equal),
{
filterValue
}
the value being filtered for
share-icon
OUTPUT VARIABLES
{
results
}
Returns the array of objects retrieved from the database against the given criteria
{
}
{
}
{
}
{
}
{
}
paths-icon
PATHS
{
success
}
Found Rows
{
error
}
Error
{
}
{
}
{
}
{
}

Function Walkthrough

Function Code Snippet

 
export default async function main(args) {
  let { apikey, subdomain, tablename, filterColumn, filterOperator, filterValue } = args.inputVars; // Input variables

  // Check if the user has inputted the required variables
  if (!apikey || !subdomain || !tablename || !filterColumn || !filterOperator || !filterValue) {
    return {
      // Returns the error path so we can continue the design
      next: { path: 'error' },
      // Renders a debug message in Voiceflow
      trace: [{ type: "debug", payload: { message: "Missing required input variables for this function" } }]
    };
  }

  // Base URL with query parameters
  const url = `https://${subdomain}.supabase.co/rest/v1/${tablename}?${filterColumn}=${filterOperator}.${filterValue}&select=*`;

  // Setup the request options, including headers
  const config = {
    method: 'GET',
    headers: {
      'Accept': 'application/json',
      'Content-Type': 'application/json',
      'Authorization': `Bearer ${apikey}`,
      'apikey': apikey,
      'Connection': 'keep-alive'
    }
  };

  // This is where we made the fetch request, we use try-catch for error handling
  try {
    // Make the fetch request
    const response = await fetch(url, config);

    // Check if the response status is OK (status in the range 200-299)
    if (!response.ok) {
      // If not OK, throw an error to be caught by the catch block
      throw new Error(`HTTP error! status: ${response.status}`);
    }

    // Map the fetch request response
    const responseBody = await response.json; // Use .json() to parse the response body

    // Checks if the fetch request returned a body
    if (!responseBody || !Array.isArray(responseBody)) {
      // If no body was returned, throw an error
      throw new Error(`Invalid or missing response body from the API`);
    }
    // Create the return objects if this is successful
    return {
      // Map our output variables
      outputVars: {
        results: JSON.stringify(responseBody)
      },
      // Map the success path so we can continue in our flow
      next: { path: 'success' }
    };
  }
  // Catches all the errors we threw and displays the debug message
  catch (error) {
    return {
      // Maps the error path so we can continue in our design
      next: { path: 'error' },
      // Renders a debug message in Voiceflow with the error
      trace: [{ type: "debug", payload: { message: "Error:" + error.message + ' ' + url } }]
    };
  }
}
copy-icon

Have something to share?

Share your creation with over 250,000 other global Voiceflow users.

ghraphic