Update Seeds while pre-fi
lling a new workspace
This commit is contained in:
@ -415,6 +415,11 @@ export type DeleteOneObjectInput = {
|
||||
id: Scalars['ID']['input'];
|
||||
};
|
||||
|
||||
export type DeleteOneRelationInput = {
|
||||
/** The id of the record to delete. */
|
||||
id: Scalars['ID']['input'];
|
||||
};
|
||||
|
||||
export type Favorite = {
|
||||
__typename?: 'Favorite';
|
||||
company?: Maybe<Company>;
|
||||
@ -463,6 +468,7 @@ export enum FieldMetadataType {
|
||||
Date = 'DATE',
|
||||
Email = 'EMAIL',
|
||||
Enum = 'ENUM',
|
||||
FullName = 'FULL_NAME',
|
||||
Link = 'LINK',
|
||||
Number = 'NUMBER',
|
||||
Phone = 'PHONE',
|
||||
@ -496,6 +502,7 @@ export type Mutation = {
|
||||
createOneRelation: Relation;
|
||||
deleteOneField: FieldDeleteResponse;
|
||||
deleteOneObject: ObjectDeleteResponse;
|
||||
deleteOneRelation: RelationDeleteResponse;
|
||||
updateOneField: Field;
|
||||
updateOneObject: Object;
|
||||
};
|
||||
@ -526,6 +533,11 @@ export type MutationDeleteOneObjectArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type MutationDeleteOneRelationArgs = {
|
||||
input: DeleteOneRelationInput;
|
||||
};
|
||||
|
||||
|
||||
export type MutationUpdateOneFieldArgs = {
|
||||
input: UpdateOneFieldInput;
|
||||
};
|
||||
@ -711,6 +723,18 @@ export type RelationConnection = {
|
||||
totalCount: Scalars['Int']['output'];
|
||||
};
|
||||
|
||||
export type RelationDeleteResponse = {
|
||||
__typename?: 'RelationDeleteResponse';
|
||||
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
||||
fromFieldMetadataId?: Maybe<Scalars['String']['output']>;
|
||||
fromObjectMetadataId?: Maybe<Scalars['String']['output']>;
|
||||
id?: Maybe<Scalars['ID']['output']>;
|
||||
relationType?: Maybe<RelationMetadataType>;
|
||||
toFieldMetadataId?: Maybe<Scalars['String']['output']>;
|
||||
toObjectMetadataId?: Maybe<Scalars['String']['output']>;
|
||||
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
||||
};
|
||||
|
||||
/** Type of the relation */
|
||||
export enum RelationMetadataType {
|
||||
ManyToMany = 'MANY_TO_MANY',
|
||||
|
||||
Reference in New Issue
Block a user