Home / Function/ sortsToUrlParams() — supabase Function Reference

sortsToUrlParams() — supabase Function Reference

Architecture documentation for the sortsToUrlParams() function in SupabaseGrid.utils.ts from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/studio/components/grid/SupabaseGrid.utils.ts lines 31–33

export function sortsToUrlParams(sorts: { column: string; ascending?: boolean }[]) {
  return sorts.map((sort) => `${sort.column}:${sort.ascending ? 'asc' : 'desc'}`)
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free