Add icon, position and key on View (#4413)

* Add view key field

* Update Prefill demo, seed dev, prefill new workspace
This commit is contained in:
Charles Bochet
2024-03-11 17:00:19 +01:00
committed by GitHub
parent 5cf4047482
commit 5287b7c4ab
12 changed files with 472 additions and 43 deletions

View File

@@ -134,8 +134,6 @@ export type FieldConnection = {
edges: Array<FieldEdge>;
/** Paging information */
pageInfo: PageInfo;
/** Fetch total count of records */
totalCount: Scalars['Int'];
};
export type FieldDeleteResponse = {
@@ -351,8 +349,6 @@ export type ObjectConnection = {
edges: Array<ObjectEdge>;
/** Paging information */
pageInfo: PageInfo;
/** Fetch total count of records */
totalCount: Scalars['Int'];
};
export type ObjectFieldsConnection = {
@@ -361,8 +357,6 @@ export type ObjectFieldsConnection = {
edges: Array<FieldEdge>;
/** Paging information */
pageInfo: PageInfo;
/** Fetch total count of records */
totalCount: Scalars['Int'];
};
export type PageInfo = {
@@ -474,8 +468,6 @@ export type RelationConnection = {
edges: Array<RelationEdge>;
/** Paging information */
pageInfo: PageInfo;
/** Fetch total count of records */
totalCount: Scalars['Int'];
};
export type RelationDeleteResponse = {