Home / Function/ FilterSchema() — supabase Function Reference

FilterSchema() — supabase Function Reference

Architecture documentation for the FilterSchema() function in FilterSchema.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/studio/components/interfaces/Realtime/Inspector/RealtimeFilterPopover/FilterSchema.tsx lines 3–23

export const FilterSchema = ({
  value,
  onChange,
}: {
  value: string
  onChange: (s: string) => void
}) => {
  return (
    <div className="flex flex-row gap-4 items-center">
      <p className="w-[60px] flex justify-end text-sm">WHERE</p>
      <SchemaSelector
        disabled
        supportSelectAll
        size="small"
        selectedSchemaName={value}
        onSelectSchema={onChange}
        className="rounded-l-none [&>button>span>div]:py-0 w-64"
      />
    </div>
  )
}

Subdomains

Analyze Your Own Codebase

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

Try Supermodel Free