query store
This commit is contained in:
parent
a01764e471
commit
9206a657c1
12 changed files with 490 additions and 34 deletions
|
@ -1,3 +1,5 @@
|
|||
import type { DynamicQueryStructure } from "../../types/dynamicQueries";
|
||||
|
||||
export interface TableMeta {
|
||||
tableName: string;
|
||||
columns: Array<{ column: string; type: string }>;
|
||||
|
@ -6,5 +8,16 @@ export interface TableMeta {
|
|||
|
||||
export interface QueryViewModel {
|
||||
id: number;
|
||||
query: string;
|
||||
title: string;
|
||||
query: string | DynamicQueryStructure;
|
||||
}
|
||||
|
||||
export interface CreateQueryViewModel {
|
||||
title: string;
|
||||
query: string | DynamicQueryStructure;
|
||||
}
|
||||
|
||||
export interface UpdateQueryViewModel {
|
||||
id: number;
|
||||
query: string | DynamicQueryStructure;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue