fix: pass updatedAt in response
This commit is contained in:
parent
a43d755fe8
commit
8bee509090
2 changed files with 2 additions and 0 deletions
|
@ -12,6 +12,7 @@ export default abstract class QueryStoreFactory {
|
|||
id: record.id,
|
||||
title: record.title,
|
||||
query: record.query.startsWith("{") ? JSON.parse(record.query) : record.query,
|
||||
updatedAt: record.updatedAt,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -4,4 +4,5 @@ export interface QueryStoreViewModel {
|
|||
id: string;
|
||||
title: string;
|
||||
query: string | DynamicQueryStructure;
|
||||
updatedAt: Date;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue