Skip to content

Commit

Permalink
Merge pull request #3704 from mathesar-foundation/table_page_rpc
Browse files Browse the repository at this point in the history
First steps of RPC implementation for table page
  • Loading branch information
pavish authored Aug 1, 2024
2 parents 2cc1223 + b42b000 commit 0c81a08
Show file tree
Hide file tree
Showing 114 changed files with 1,174 additions and 1,095 deletions.
11 changes: 0 additions & 11 deletions mathesar_ui/src/api/rest/columns.ts

This file was deleted.

6 changes: 3 additions & 3 deletions mathesar_ui/src/api/rest/types/queries.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Column } from '@mathesar/api/rest/types/tables/columns';
import type { JpPath } from '@mathesar/api/rest/types/tables/joinable_tables';
import type { PaginatedResponse } from '@mathesar/api/rest/utils/requestUtils';
import type { Column } from '@mathesar/api/rpc/columns';
import type { Schema } from '@mathesar/api/rpc/schemas';
import type { JoinPath } from '@mathesar/api/rpc/tables';

export type QueryColumnAlias = string;

Expand All @@ -12,7 +12,7 @@ export type QueryColumnAlias = string;
export interface QueryInstanceInitialColumn {
alias: QueryColumnAlias;
id: Column['id'];
jp_path?: JpPath;
jp_path?: JoinPath;
}

// TODO: Extend this to support more complicated filters
Expand Down
162 changes: 0 additions & 162 deletions mathesar_ui/src/api/rest/types/tables/columns.ts

This file was deleted.

40 changes: 0 additions & 40 deletions mathesar_ui/src/api/rest/types/tables/constraints.ts

This file was deleted.

39 changes: 0 additions & 39 deletions mathesar_ui/src/api/rest/types/tables/joinable_tables.ts

This file was deleted.

Loading

0 comments on commit 0c81a08

Please sign in to comment.