|
@@ -723,8 +723,8 @@ export interface BlockInstanceWhereInput {
|
|
|
id_ends_with?: Maybe<ID_Input>;
|
|
|
id_not_ends_with?: Maybe<ID_Input>;
|
|
|
block?: Maybe<BlockWhereInput>;
|
|
|
- parentTraining?: Maybe<TrainingWhereInput>;
|
|
|
parentBlock?: Maybe<BlockWhereInput>;
|
|
|
+ parentTraining?: Maybe<TrainingWhereInput>;
|
|
|
order?: Maybe<Int>;
|
|
|
order_not?: Maybe<Int>;
|
|
|
order_in?: Maybe<Int[] | Int>;
|
|
@@ -1599,8 +1599,8 @@ export interface BlockInstanceCreateManyWithoutBlockInput {
|
|
|
|
|
|
export interface BlockInstanceCreateWithoutBlockInput {
|
|
|
id?: Maybe<ID_Input>;
|
|
|
- parentTraining?: Maybe<TrainingCreateOneWithoutBlocksInput>;
|
|
|
parentBlock?: Maybe<BlockCreateOneWithoutBlocksInput>;
|
|
|
+ parentTraining?: Maybe<TrainingCreateOneWithoutBlocksInput>;
|
|
|
order: Int;
|
|
|
rounds?: Maybe<Int>;
|
|
|
variation?: Maybe<String>;
|
|
@@ -2559,8 +2559,8 @@ export interface BlockInstanceUpdateWithWhereUniqueWithoutBlockInput {
|
|
|
}
|
|
|
|
|
|
export interface BlockInstanceUpdateWithoutBlockDataInput {
|
|
|
- parentTraining?: Maybe<TrainingUpdateOneWithoutBlocksInput>;
|
|
|
parentBlock?: Maybe<BlockUpdateOneWithoutBlocksInput>;
|
|
|
+ parentTraining?: Maybe<TrainingUpdateOneWithoutBlocksInput>;
|
|
|
order?: Maybe<Int>;
|
|
|
rounds?: Maybe<Int>;
|
|
|
variation?: Maybe<String>;
|
|
@@ -2611,8 +2611,8 @@ export interface BlockUpdateManyMutationInput {
|
|
|
export interface BlockInstanceCreateInput {
|
|
|
id?: Maybe<ID_Input>;
|
|
|
block: BlockCreateOneWithoutLinksInput;
|
|
|
- parentTraining?: Maybe<TrainingCreateOneWithoutBlocksInput>;
|
|
|
parentBlock?: Maybe<BlockCreateOneWithoutBlocksInput>;
|
|
|
+ parentTraining?: Maybe<TrainingCreateOneWithoutBlocksInput>;
|
|
|
order: Int;
|
|
|
rounds?: Maybe<Int>;
|
|
|
variation?: Maybe<String>;
|
|
@@ -2620,8 +2620,8 @@ export interface BlockInstanceCreateInput {
|
|
|
|
|
|
export interface BlockInstanceUpdateInput {
|
|
|
block?: Maybe<BlockUpdateOneRequiredWithoutLinksInput>;
|
|
|
- parentTraining?: Maybe<TrainingUpdateOneWithoutBlocksInput>;
|
|
|
parentBlock?: Maybe<BlockUpdateOneWithoutBlocksInput>;
|
|
|
+ parentTraining?: Maybe<TrainingUpdateOneWithoutBlocksInput>;
|
|
|
order?: Maybe<Int>;
|
|
|
rounds?: Maybe<Int>;
|
|
|
variation?: Maybe<String>;
|
|
@@ -3274,8 +3274,8 @@ export interface BlockInstancePromise
|
|
|
Fragmentable {
|
|
|
id: () => Promise<ID_Output>;
|
|
|
block: <T = BlockPromise>() => T;
|
|
|
- parentTraining: <T = TrainingPromise>() => T;
|
|
|
parentBlock: <T = BlockPromise>() => T;
|
|
|
+ parentTraining: <T = TrainingPromise>() => T;
|
|
|
order: () => Promise<Int>;
|
|
|
rounds: () => Promise<Int>;
|
|
|
variation: () => Promise<String>;
|
|
@@ -3286,8 +3286,8 @@ export interface BlockInstanceSubscription
|
|
|
Fragmentable {
|
|
|
id: () => Promise<AsyncIterator<ID_Output>>;
|
|
|
block: <T = BlockSubscription>() => T;
|
|
|
- parentTraining: <T = TrainingSubscription>() => T;
|
|
|
parentBlock: <T = BlockSubscription>() => T;
|
|
|
+ parentTraining: <T = TrainingSubscription>() => T;
|
|
|
order: () => Promise<AsyncIterator<Int>>;
|
|
|
rounds: () => Promise<AsyncIterator<Int>>;
|
|
|
variation: () => Promise<AsyncIterator<String>>;
|
|
@@ -3298,8 +3298,8 @@ export interface BlockInstanceNullablePromise
|
|
|
Fragmentable {
|
|
|
id: () => Promise<ID_Output>;
|
|
|
block: <T = BlockPromise>() => T;
|
|
|
- parentTraining: <T = TrainingPromise>() => T;
|
|
|
parentBlock: <T = BlockPromise>() => T;
|
|
|
+ parentTraining: <T = TrainingPromise>() => T;
|
|
|
order: () => Promise<Int>;
|
|
|
rounds: () => Promise<Int>;
|
|
|
variation: () => Promise<String>;
|