join query

Todo: dictionary for join tables
This commit is contained in:
Julian Krauser 2024-12-17 16:52:03 +01:00
parent ff253c73f0
commit 761d998edc
8 changed files with 217 additions and 18 deletions

View file

@ -12,7 +12,7 @@ export const useQueryBuilderStore = defineStore("queryBuilder", {
totalLength: 0 as number,
loadingData: "fetched" as "loading" | "fetched" | "failed",
queryError: "" as string | { sql: string; code: string; msg: string },
query: undefined as undefined | DynamicQueryStructure,
query: undefined as undefined | DynamicQueryStructure | string,
isLoadedQuery: undefined as undefined | number,
};
},