|
@@ -1,5 +1,5 @@
|
|
# source: http://prisma:4466
|
|
# source: http://prisma:4466
|
|
-# timestamp: Sun Apr 05 2020 15:33:34 GMT+0000 (Coordinated Universal Time)
|
|
|
|
|
|
+# timestamp: Wed Apr 08 2020 13:30:04 GMT+0000 (Coordinated Universal Time)
|
|
|
|
|
|
type AggregateBlock {
|
|
type AggregateBlock {
|
|
count: Int!
|
|
count: Int!
|
|
@@ -61,6 +61,7 @@ type Block implements Node {
|
|
rest: Int
|
|
rest: Int
|
|
tracks(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Track!]
|
|
tracks(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Track!]
|
|
blocks(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance!]
|
|
blocks(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance!]
|
|
|
|
+ links(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance!]
|
|
exercises(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ExerciseInstance!]
|
|
exercises(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ExerciseInstance!]
|
|
}
|
|
}
|
|
|
|
|
|
@@ -84,7 +85,8 @@ input BlockCreateInput {
|
|
pictures: BlockCreatepicturesInput
|
|
pictures: BlockCreatepicturesInput
|
|
format: FormatCreateOneInput!
|
|
format: FormatCreateOneInput!
|
|
tracks: TrackCreateManyInput
|
|
tracks: TrackCreateManyInput
|
|
- blocks: BlockInstanceCreateManyWithoutBlockInput
|
|
|
|
|
|
+ blocks: BlockInstanceCreateManyWithoutParentBlockInput
|
|
|
|
+ links: BlockInstanceCreateManyWithoutBlockInput
|
|
exercises: ExerciseInstanceCreateManyInput
|
|
exercises: ExerciseInstanceCreateManyInput
|
|
}
|
|
}
|
|
|
|
|
|
@@ -93,6 +95,11 @@ input BlockCreateOneWithoutBlocksInput {
|
|
connect: BlockWhereUniqueInput
|
|
connect: BlockWhereUniqueInput
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input BlockCreateOneWithoutLinksInput {
|
|
|
|
+ create: BlockCreateWithoutLinksInput
|
|
|
|
+ connect: BlockWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
input BlockCreatepicturesInput {
|
|
input BlockCreatepicturesInput {
|
|
set: [String!]
|
|
set: [String!]
|
|
}
|
|
}
|
|
@@ -111,6 +118,21 @@ input BlockCreateWithoutBlocksInput {
|
|
pictures: BlockCreatepicturesInput
|
|
pictures: BlockCreatepicturesInput
|
|
format: FormatCreateOneInput!
|
|
format: FormatCreateOneInput!
|
|
tracks: TrackCreateManyInput
|
|
tracks: TrackCreateManyInput
|
|
|
|
+ links: BlockInstanceCreateManyWithoutBlockInput
|
|
|
|
+ exercises: ExerciseInstanceCreateManyInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input BlockCreateWithoutLinksInput {
|
|
|
|
+ id: ID
|
|
|
|
+ title: String!
|
|
|
|
+ description: String
|
|
|
|
+ duration: Int
|
|
|
|
+ rest: Int
|
|
|
|
+ videos: BlockCreatevideosInput
|
|
|
|
+ pictures: BlockCreatepicturesInput
|
|
|
|
+ format: FormatCreateOneInput!
|
|
|
|
+ tracks: TrackCreateManyInput
|
|
|
|
+ blocks: BlockInstanceCreateManyWithoutParentBlockInput
|
|
exercises: ExerciseInstanceCreateManyInput
|
|
exercises: ExerciseInstanceCreateManyInput
|
|
}
|
|
}
|
|
|
|
|
|
@@ -126,6 +148,8 @@ type BlockEdge {
|
|
type BlockInstance implements Node {
|
|
type BlockInstance implements Node {
|
|
id: ID!
|
|
id: ID!
|
|
block: Block!
|
|
block: Block!
|
|
|
|
+ parentTraining: Training
|
|
|
|
+ parentBlock: Block
|
|
order: Int!
|
|
order: Int!
|
|
rounds: Int
|
|
rounds: Int
|
|
variation: String
|
|
variation: String
|
|
@@ -146,16 +170,23 @@ input BlockInstanceCreateInput {
|
|
order: Int!
|
|
order: Int!
|
|
rounds: Int
|
|
rounds: Int
|
|
variation: String
|
|
variation: String
|
|
- block: BlockCreateOneWithoutBlocksInput!
|
|
|
|
|
|
+ block: BlockCreateOneWithoutLinksInput!
|
|
|
|
+ parentTraining: TrainingCreateOneWithoutBlocksInput
|
|
|
|
+ parentBlock: BlockCreateOneWithoutBlocksInput
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceCreateManyInput {
|
|
|
|
- create: [BlockInstanceCreateInput!]
|
|
|
|
|
|
+input BlockInstanceCreateManyWithoutBlockInput {
|
|
|
|
+ create: [BlockInstanceCreateWithoutBlockInput!]
|
|
connect: [BlockInstanceWhereUniqueInput!]
|
|
connect: [BlockInstanceWhereUniqueInput!]
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceCreateManyWithoutBlockInput {
|
|
|
|
- create: [BlockInstanceCreateWithoutBlockInput!]
|
|
|
|
|
|
+input BlockInstanceCreateManyWithoutParentBlockInput {
|
|
|
|
+ create: [BlockInstanceCreateWithoutParentBlockInput!]
|
|
|
|
+ connect: [BlockInstanceWhereUniqueInput!]
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input BlockInstanceCreateManyWithoutParentTrainingInput {
|
|
|
|
+ create: [BlockInstanceCreateWithoutParentTrainingInput!]
|
|
connect: [BlockInstanceWhereUniqueInput!]
|
|
connect: [BlockInstanceWhereUniqueInput!]
|
|
}
|
|
}
|
|
|
|
|
|
@@ -164,6 +195,26 @@ input BlockInstanceCreateWithoutBlockInput {
|
|
order: Int!
|
|
order: Int!
|
|
rounds: Int
|
|
rounds: Int
|
|
variation: String
|
|
variation: String
|
|
|
|
+ parentTraining: TrainingCreateOneWithoutBlocksInput
|
|
|
|
+ parentBlock: BlockCreateOneWithoutBlocksInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input BlockInstanceCreateWithoutParentBlockInput {
|
|
|
|
+ id: ID
|
|
|
|
+ order: Int!
|
|
|
|
+ rounds: Int
|
|
|
|
+ variation: String
|
|
|
|
+ block: BlockCreateOneWithoutLinksInput!
|
|
|
|
+ parentTraining: TrainingCreateOneWithoutBlocksInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input BlockInstanceCreateWithoutParentTrainingInput {
|
|
|
|
+ id: ID
|
|
|
|
+ order: Int!
|
|
|
|
+ rounds: Int
|
|
|
|
+ variation: String
|
|
|
|
+ block: BlockCreateOneWithoutLinksInput!
|
|
|
|
+ parentBlock: BlockCreateOneWithoutBlocksInput
|
|
}
|
|
}
|
|
|
|
|
|
"""An edge in a connection."""
|
|
"""An edge in a connection."""
|
|
@@ -365,54 +416,61 @@ input BlockInstanceSubscriptionWhereInput {
|
|
node: BlockInstanceWhereInput
|
|
node: BlockInstanceWhereInput
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceUpdateDataInput {
|
|
|
|
|
|
+input BlockInstanceUpdateInput {
|
|
order: Int
|
|
order: Int
|
|
rounds: Int
|
|
rounds: Int
|
|
variation: String
|
|
variation: String
|
|
- block: BlockUpdateOneRequiredWithoutBlocksInput
|
|
|
|
|
|
+ block: BlockUpdateOneRequiredWithoutLinksInput
|
|
|
|
+ parentTraining: TrainingUpdateOneWithoutBlocksInput
|
|
|
|
+ parentBlock: BlockUpdateOneWithoutBlocksInput
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceUpdateInput {
|
|
|
|
|
|
+input BlockInstanceUpdateManyDataInput {
|
|
order: Int
|
|
order: Int
|
|
rounds: Int
|
|
rounds: Int
|
|
variation: String
|
|
variation: String
|
|
- block: BlockUpdateOneRequiredWithoutBlocksInput
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceUpdateManyDataInput {
|
|
|
|
|
|
+input BlockInstanceUpdateManyMutationInput {
|
|
order: Int
|
|
order: Int
|
|
rounds: Int
|
|
rounds: Int
|
|
variation: String
|
|
variation: String
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceUpdateManyInput {
|
|
|
|
- create: [BlockInstanceCreateInput!]
|
|
|
|
|
|
+input BlockInstanceUpdateManyWithoutBlockInput {
|
|
|
|
+ create: [BlockInstanceCreateWithoutBlockInput!]
|
|
connect: [BlockInstanceWhereUniqueInput!]
|
|
connect: [BlockInstanceWhereUniqueInput!]
|
|
set: [BlockInstanceWhereUniqueInput!]
|
|
set: [BlockInstanceWhereUniqueInput!]
|
|
disconnect: [BlockInstanceWhereUniqueInput!]
|
|
disconnect: [BlockInstanceWhereUniqueInput!]
|
|
delete: [BlockInstanceWhereUniqueInput!]
|
|
delete: [BlockInstanceWhereUniqueInput!]
|
|
- update: [BlockInstanceUpdateWithWhereUniqueNestedInput!]
|
|
|
|
|
|
+ update: [BlockInstanceUpdateWithWhereUniqueWithoutBlockInput!]
|
|
updateMany: [BlockInstanceUpdateManyWithWhereNestedInput!]
|
|
updateMany: [BlockInstanceUpdateManyWithWhereNestedInput!]
|
|
deleteMany: [BlockInstanceScalarWhereInput!]
|
|
deleteMany: [BlockInstanceScalarWhereInput!]
|
|
- upsert: [BlockInstanceUpsertWithWhereUniqueNestedInput!]
|
|
|
|
|
|
+ upsert: [BlockInstanceUpsertWithWhereUniqueWithoutBlockInput!]
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceUpdateManyMutationInput {
|
|
|
|
- order: Int
|
|
|
|
- rounds: Int
|
|
|
|
- variation: String
|
|
|
|
|
|
+input BlockInstanceUpdateManyWithoutParentBlockInput {
|
|
|
|
+ create: [BlockInstanceCreateWithoutParentBlockInput!]
|
|
|
|
+ connect: [BlockInstanceWhereUniqueInput!]
|
|
|
|
+ set: [BlockInstanceWhereUniqueInput!]
|
|
|
|
+ disconnect: [BlockInstanceWhereUniqueInput!]
|
|
|
|
+ delete: [BlockInstanceWhereUniqueInput!]
|
|
|
|
+ update: [BlockInstanceUpdateWithWhereUniqueWithoutParentBlockInput!]
|
|
|
|
+ updateMany: [BlockInstanceUpdateManyWithWhereNestedInput!]
|
|
|
|
+ deleteMany: [BlockInstanceScalarWhereInput!]
|
|
|
|
+ upsert: [BlockInstanceUpsertWithWhereUniqueWithoutParentBlockInput!]
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceUpdateManyWithoutBlockInput {
|
|
|
|
- create: [BlockInstanceCreateWithoutBlockInput!]
|
|
|
|
|
|
+input BlockInstanceUpdateManyWithoutParentTrainingInput {
|
|
|
|
+ create: [BlockInstanceCreateWithoutParentTrainingInput!]
|
|
connect: [BlockInstanceWhereUniqueInput!]
|
|
connect: [BlockInstanceWhereUniqueInput!]
|
|
set: [BlockInstanceWhereUniqueInput!]
|
|
set: [BlockInstanceWhereUniqueInput!]
|
|
disconnect: [BlockInstanceWhereUniqueInput!]
|
|
disconnect: [BlockInstanceWhereUniqueInput!]
|
|
delete: [BlockInstanceWhereUniqueInput!]
|
|
delete: [BlockInstanceWhereUniqueInput!]
|
|
- update: [BlockInstanceUpdateWithWhereUniqueWithoutBlockInput!]
|
|
|
|
|
|
+ update: [BlockInstanceUpdateWithWhereUniqueWithoutParentTrainingInput!]
|
|
updateMany: [BlockInstanceUpdateManyWithWhereNestedInput!]
|
|
updateMany: [BlockInstanceUpdateManyWithWhereNestedInput!]
|
|
deleteMany: [BlockInstanceScalarWhereInput!]
|
|
deleteMany: [BlockInstanceScalarWhereInput!]
|
|
- upsert: [BlockInstanceUpsertWithWhereUniqueWithoutBlockInput!]
|
|
|
|
|
|
+ upsert: [BlockInstanceUpsertWithWhereUniqueWithoutParentTrainingInput!]
|
|
}
|
|
}
|
|
|
|
|
|
input BlockInstanceUpdateManyWithWhereNestedInput {
|
|
input BlockInstanceUpdateManyWithWhereNestedInput {
|
|
@@ -424,11 +482,24 @@ input BlockInstanceUpdateWithoutBlockDataInput {
|
|
order: Int
|
|
order: Int
|
|
rounds: Int
|
|
rounds: Int
|
|
variation: String
|
|
variation: String
|
|
|
|
+ parentTraining: TrainingUpdateOneWithoutBlocksInput
|
|
|
|
+ parentBlock: BlockUpdateOneWithoutBlocksInput
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceUpdateWithWhereUniqueNestedInput {
|
|
|
|
- where: BlockInstanceWhereUniqueInput!
|
|
|
|
- data: BlockInstanceUpdateDataInput!
|
|
|
|
|
|
+input BlockInstanceUpdateWithoutParentBlockDataInput {
|
|
|
|
+ order: Int
|
|
|
|
+ rounds: Int
|
|
|
|
+ variation: String
|
|
|
|
+ block: BlockUpdateOneRequiredWithoutLinksInput
|
|
|
|
+ parentTraining: TrainingUpdateOneWithoutBlocksInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input BlockInstanceUpdateWithoutParentTrainingDataInput {
|
|
|
|
+ order: Int
|
|
|
|
+ rounds: Int
|
|
|
|
+ variation: String
|
|
|
|
+ block: BlockUpdateOneRequiredWithoutLinksInput
|
|
|
|
+ parentBlock: BlockUpdateOneWithoutBlocksInput
|
|
}
|
|
}
|
|
|
|
|
|
input BlockInstanceUpdateWithWhereUniqueWithoutBlockInput {
|
|
input BlockInstanceUpdateWithWhereUniqueWithoutBlockInput {
|
|
@@ -436,10 +507,14 @@ input BlockInstanceUpdateWithWhereUniqueWithoutBlockInput {
|
|
data: BlockInstanceUpdateWithoutBlockDataInput!
|
|
data: BlockInstanceUpdateWithoutBlockDataInput!
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockInstanceUpsertWithWhereUniqueNestedInput {
|
|
|
|
|
|
+input BlockInstanceUpdateWithWhereUniqueWithoutParentBlockInput {
|
|
where: BlockInstanceWhereUniqueInput!
|
|
where: BlockInstanceWhereUniqueInput!
|
|
- update: BlockInstanceUpdateDataInput!
|
|
|
|
- create: BlockInstanceCreateInput!
|
|
|
|
|
|
+ data: BlockInstanceUpdateWithoutParentBlockDataInput!
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input BlockInstanceUpdateWithWhereUniqueWithoutParentTrainingInput {
|
|
|
|
+ where: BlockInstanceWhereUniqueInput!
|
|
|
|
+ data: BlockInstanceUpdateWithoutParentTrainingDataInput!
|
|
}
|
|
}
|
|
|
|
|
|
input BlockInstanceUpsertWithWhereUniqueWithoutBlockInput {
|
|
input BlockInstanceUpsertWithWhereUniqueWithoutBlockInput {
|
|
@@ -448,6 +523,18 @@ input BlockInstanceUpsertWithWhereUniqueWithoutBlockInput {
|
|
create: BlockInstanceCreateWithoutBlockInput!
|
|
create: BlockInstanceCreateWithoutBlockInput!
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input BlockInstanceUpsertWithWhereUniqueWithoutParentBlockInput {
|
|
|
|
+ where: BlockInstanceWhereUniqueInput!
|
|
|
|
+ update: BlockInstanceUpdateWithoutParentBlockDataInput!
|
|
|
|
+ create: BlockInstanceCreateWithoutParentBlockInput!
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input BlockInstanceUpsertWithWhereUniqueWithoutParentTrainingInput {
|
|
|
|
+ where: BlockInstanceWhereUniqueInput!
|
|
|
|
+ update: BlockInstanceUpdateWithoutParentTrainingDataInput!
|
|
|
|
+ create: BlockInstanceCreateWithoutParentTrainingInput!
|
|
|
|
+}
|
|
|
|
+
|
|
input BlockInstanceWhereInput {
|
|
input BlockInstanceWhereInput {
|
|
"""Logical AND on all given filters."""
|
|
"""Logical AND on all given filters."""
|
|
AND: [BlockInstanceWhereInput!]
|
|
AND: [BlockInstanceWhereInput!]
|
|
@@ -582,6 +669,8 @@ input BlockInstanceWhereInput {
|
|
"""All values not ending with the given string."""
|
|
"""All values not ending with the given string."""
|
|
variation_not_ends_with: String
|
|
variation_not_ends_with: String
|
|
block: BlockWhereInput
|
|
block: BlockWhereInput
|
|
|
|
+ parentTraining: TrainingWhereInput
|
|
|
|
+ parentBlock: BlockWhereInput
|
|
}
|
|
}
|
|
|
|
|
|
input BlockInstanceWhereUniqueInput {
|
|
input BlockInstanceWhereUniqueInput {
|
|
@@ -657,7 +746,8 @@ input BlockUpdateInput {
|
|
pictures: BlockUpdatepicturesInput
|
|
pictures: BlockUpdatepicturesInput
|
|
format: FormatUpdateOneRequiredInput
|
|
format: FormatUpdateOneRequiredInput
|
|
tracks: TrackUpdateManyInput
|
|
tracks: TrackUpdateManyInput
|
|
- blocks: BlockInstanceUpdateManyWithoutBlockInput
|
|
|
|
|
|
+ blocks: BlockInstanceUpdateManyWithoutParentBlockInput
|
|
|
|
+ links: BlockInstanceUpdateManyWithoutBlockInput
|
|
exercises: ExerciseInstanceUpdateManyInput
|
|
exercises: ExerciseInstanceUpdateManyInput
|
|
}
|
|
}
|
|
|
|
|
|
@@ -670,9 +760,18 @@ input BlockUpdateManyMutationInput {
|
|
pictures: BlockUpdatepicturesInput
|
|
pictures: BlockUpdatepicturesInput
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockUpdateOneRequiredWithoutBlocksInput {
|
|
|
|
|
|
+input BlockUpdateOneRequiredWithoutLinksInput {
|
|
|
|
+ create: BlockCreateWithoutLinksInput
|
|
|
|
+ connect: BlockWhereUniqueInput
|
|
|
|
+ update: BlockUpdateWithoutLinksDataInput
|
|
|
|
+ upsert: BlockUpsertWithoutLinksInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input BlockUpdateOneWithoutBlocksInput {
|
|
create: BlockCreateWithoutBlocksInput
|
|
create: BlockCreateWithoutBlocksInput
|
|
connect: BlockWhereUniqueInput
|
|
connect: BlockWhereUniqueInput
|
|
|
|
+ disconnect: Boolean
|
|
|
|
+ delete: Boolean
|
|
update: BlockUpdateWithoutBlocksDataInput
|
|
update: BlockUpdateWithoutBlocksDataInput
|
|
upsert: BlockUpsertWithoutBlocksInput
|
|
upsert: BlockUpsertWithoutBlocksInput
|
|
}
|
|
}
|
|
@@ -694,6 +793,20 @@ input BlockUpdateWithoutBlocksDataInput {
|
|
pictures: BlockUpdatepicturesInput
|
|
pictures: BlockUpdatepicturesInput
|
|
format: FormatUpdateOneRequiredInput
|
|
format: FormatUpdateOneRequiredInput
|
|
tracks: TrackUpdateManyInput
|
|
tracks: TrackUpdateManyInput
|
|
|
|
+ links: BlockInstanceUpdateManyWithoutBlockInput
|
|
|
|
+ exercises: ExerciseInstanceUpdateManyInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input BlockUpdateWithoutLinksDataInput {
|
|
|
|
+ title: String
|
|
|
|
+ description: String
|
|
|
|
+ duration: Int
|
|
|
|
+ rest: Int
|
|
|
|
+ videos: BlockUpdatevideosInput
|
|
|
|
+ pictures: BlockUpdatepicturesInput
|
|
|
|
+ format: FormatUpdateOneRequiredInput
|
|
|
|
+ tracks: TrackUpdateManyInput
|
|
|
|
+ blocks: BlockInstanceUpdateManyWithoutParentBlockInput
|
|
exercises: ExerciseInstanceUpdateManyInput
|
|
exercises: ExerciseInstanceUpdateManyInput
|
|
}
|
|
}
|
|
|
|
|
|
@@ -702,6 +815,11 @@ input BlockUpsertWithoutBlocksInput {
|
|
create: BlockCreateWithoutBlocksInput!
|
|
create: BlockCreateWithoutBlocksInput!
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input BlockUpsertWithoutLinksInput {
|
|
|
|
+ update: BlockUpdateWithoutLinksDataInput!
|
|
|
|
+ create: BlockCreateWithoutLinksInput!
|
|
|
|
+}
|
|
|
|
+
|
|
input BlockWhereInput {
|
|
input BlockWhereInput {
|
|
"""Logical AND on all given filters."""
|
|
"""Logical AND on all given filters."""
|
|
AND: [BlockWhereInput!]
|
|
AND: [BlockWhereInput!]
|
|
@@ -882,6 +1000,9 @@ input BlockWhereInput {
|
|
blocks_every: BlockInstanceWhereInput
|
|
blocks_every: BlockInstanceWhereInput
|
|
blocks_some: BlockInstanceWhereInput
|
|
blocks_some: BlockInstanceWhereInput
|
|
blocks_none: BlockInstanceWhereInput
|
|
blocks_none: BlockInstanceWhereInput
|
|
|
|
+ links_every: BlockInstanceWhereInput
|
|
|
|
+ links_some: BlockInstanceWhereInput
|
|
|
|
+ links_none: BlockInstanceWhereInput
|
|
exercises_every: ExerciseInstanceWhereInput
|
|
exercises_every: ExerciseInstanceWhereInput
|
|
exercises_some: ExerciseInstanceWhereInput
|
|
exercises_some: ExerciseInstanceWhereInput
|
|
exercises_none: ExerciseInstanceWhereInput
|
|
exercises_none: ExerciseInstanceWhereInput
|
|
@@ -1266,7 +1387,7 @@ scalar DateTime
|
|
type Exercise implements Node {
|
|
type Exercise implements Node {
|
|
id: ID!
|
|
id: ID!
|
|
name: String!
|
|
name: String!
|
|
- description: String!
|
|
|
|
|
|
+ description: String
|
|
videos: [String!]!
|
|
videos: [String!]!
|
|
pictures: [String!]!
|
|
pictures: [String!]!
|
|
targets: [String!]!
|
|
targets: [String!]!
|
|
@@ -1290,7 +1411,7 @@ input ExerciseCreatebaseExerciseInput {
|
|
input ExerciseCreateInput {
|
|
input ExerciseCreateInput {
|
|
id: ID
|
|
id: ID
|
|
name: String!
|
|
name: String!
|
|
- description: String!
|
|
|
|
|
|
+ description: String
|
|
videos: ExerciseCreatevideosInput
|
|
videos: ExerciseCreatevideosInput
|
|
pictures: ExerciseCreatepicturesInput
|
|
pictures: ExerciseCreatepicturesInput
|
|
targets: ExerciseCreatetargetsInput
|
|
targets: ExerciseCreatetargetsInput
|
|
@@ -1759,7 +1880,7 @@ enum ExerciseOrderByInput {
|
|
type ExercisePreviousValues {
|
|
type ExercisePreviousValues {
|
|
id: ID!
|
|
id: ID!
|
|
name: String!
|
|
name: String!
|
|
- description: String!
|
|
|
|
|
|
+ description: String
|
|
videos: [String!]!
|
|
videos: [String!]!
|
|
pictures: [String!]!
|
|
pictures: [String!]!
|
|
targets: [String!]!
|
|
targets: [String!]!
|
|
@@ -2252,67 +2373,67 @@ scalar Long
|
|
type Mutation {
|
|
type Mutation {
|
|
createTraining(data: TrainingCreateInput!): Training!
|
|
createTraining(data: TrainingCreateInput!): Training!
|
|
createBlock(data: BlockCreateInput!): Block!
|
|
createBlock(data: BlockCreateInput!): Block!
|
|
|
|
+ createBlockInstance(data: BlockInstanceCreateInput!): BlockInstance!
|
|
createComment(data: CommentCreateInput!): Comment!
|
|
createComment(data: CommentCreateInput!): Comment!
|
|
createUser(data: UserCreateInput!): User!
|
|
createUser(data: UserCreateInput!): User!
|
|
createTrainingType(data: TrainingTypeCreateInput!): TrainingType!
|
|
createTrainingType(data: TrainingTypeCreateInput!): TrainingType!
|
|
createTrack(data: TrackCreateInput!): Track!
|
|
createTrack(data: TrackCreateInput!): Track!
|
|
createExercise(data: ExerciseCreateInput!): Exercise!
|
|
createExercise(data: ExerciseCreateInput!): Exercise!
|
|
- createBlockInstance(data: BlockInstanceCreateInput!): BlockInstance!
|
|
|
|
createFormat(data: FormatCreateInput!): Format!
|
|
createFormat(data: FormatCreateInput!): Format!
|
|
createExerciseInstance(data: ExerciseInstanceCreateInput!): ExerciseInstance!
|
|
createExerciseInstance(data: ExerciseInstanceCreateInput!): ExerciseInstance!
|
|
createRating(data: RatingCreateInput!): Rating!
|
|
createRating(data: RatingCreateInput!): Rating!
|
|
updateTraining(data: TrainingUpdateInput!, where: TrainingWhereUniqueInput!): Training
|
|
updateTraining(data: TrainingUpdateInput!, where: TrainingWhereUniqueInput!): Training
|
|
updateBlock(data: BlockUpdateInput!, where: BlockWhereUniqueInput!): Block
|
|
updateBlock(data: BlockUpdateInput!, where: BlockWhereUniqueInput!): Block
|
|
|
|
+ updateBlockInstance(data: BlockInstanceUpdateInput!, where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
updateComment(data: CommentUpdateInput!, where: CommentWhereUniqueInput!): Comment
|
|
updateComment(data: CommentUpdateInput!, where: CommentWhereUniqueInput!): Comment
|
|
updateUser(data: UserUpdateInput!, where: UserWhereUniqueInput!): User
|
|
updateUser(data: UserUpdateInput!, where: UserWhereUniqueInput!): User
|
|
updateTrainingType(data: TrainingTypeUpdateInput!, where: TrainingTypeWhereUniqueInput!): TrainingType
|
|
updateTrainingType(data: TrainingTypeUpdateInput!, where: TrainingTypeWhereUniqueInput!): TrainingType
|
|
updateTrack(data: TrackUpdateInput!, where: TrackWhereUniqueInput!): Track
|
|
updateTrack(data: TrackUpdateInput!, where: TrackWhereUniqueInput!): Track
|
|
updateExercise(data: ExerciseUpdateInput!, where: ExerciseWhereUniqueInput!): Exercise
|
|
updateExercise(data: ExerciseUpdateInput!, where: ExerciseWhereUniqueInput!): Exercise
|
|
- updateBlockInstance(data: BlockInstanceUpdateInput!, where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
|
|
updateFormat(data: FormatUpdateInput!, where: FormatWhereUniqueInput!): Format
|
|
updateFormat(data: FormatUpdateInput!, where: FormatWhereUniqueInput!): Format
|
|
updateExerciseInstance(data: ExerciseInstanceUpdateInput!, where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
updateExerciseInstance(data: ExerciseInstanceUpdateInput!, where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
updateRating(data: RatingUpdateInput!, where: RatingWhereUniqueInput!): Rating
|
|
updateRating(data: RatingUpdateInput!, where: RatingWhereUniqueInput!): Rating
|
|
deleteTraining(where: TrainingWhereUniqueInput!): Training
|
|
deleteTraining(where: TrainingWhereUniqueInput!): Training
|
|
deleteBlock(where: BlockWhereUniqueInput!): Block
|
|
deleteBlock(where: BlockWhereUniqueInput!): Block
|
|
|
|
+ deleteBlockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
deleteComment(where: CommentWhereUniqueInput!): Comment
|
|
deleteComment(where: CommentWhereUniqueInput!): Comment
|
|
deleteUser(where: UserWhereUniqueInput!): User
|
|
deleteUser(where: UserWhereUniqueInput!): User
|
|
deleteTrainingType(where: TrainingTypeWhereUniqueInput!): TrainingType
|
|
deleteTrainingType(where: TrainingTypeWhereUniqueInput!): TrainingType
|
|
deleteTrack(where: TrackWhereUniqueInput!): Track
|
|
deleteTrack(where: TrackWhereUniqueInput!): Track
|
|
deleteExercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
deleteExercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
- deleteBlockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
|
|
deleteFormat(where: FormatWhereUniqueInput!): Format
|
|
deleteFormat(where: FormatWhereUniqueInput!): Format
|
|
deleteExerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
deleteExerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
deleteRating(where: RatingWhereUniqueInput!): Rating
|
|
deleteRating(where: RatingWhereUniqueInput!): Rating
|
|
upsertTraining(where: TrainingWhereUniqueInput!, create: TrainingCreateInput!, update: TrainingUpdateInput!): Training!
|
|
upsertTraining(where: TrainingWhereUniqueInput!, create: TrainingCreateInput!, update: TrainingUpdateInput!): Training!
|
|
upsertBlock(where: BlockWhereUniqueInput!, create: BlockCreateInput!, update: BlockUpdateInput!): Block!
|
|
upsertBlock(where: BlockWhereUniqueInput!, create: BlockCreateInput!, update: BlockUpdateInput!): Block!
|
|
|
|
+ upsertBlockInstance(where: BlockInstanceWhereUniqueInput!, create: BlockInstanceCreateInput!, update: BlockInstanceUpdateInput!): BlockInstance!
|
|
upsertComment(where: CommentWhereUniqueInput!, create: CommentCreateInput!, update: CommentUpdateInput!): Comment!
|
|
upsertComment(where: CommentWhereUniqueInput!, create: CommentCreateInput!, update: CommentUpdateInput!): Comment!
|
|
upsertUser(where: UserWhereUniqueInput!, create: UserCreateInput!, update: UserUpdateInput!): User!
|
|
upsertUser(where: UserWhereUniqueInput!, create: UserCreateInput!, update: UserUpdateInput!): User!
|
|
upsertTrainingType(where: TrainingTypeWhereUniqueInput!, create: TrainingTypeCreateInput!, update: TrainingTypeUpdateInput!): TrainingType!
|
|
upsertTrainingType(where: TrainingTypeWhereUniqueInput!, create: TrainingTypeCreateInput!, update: TrainingTypeUpdateInput!): TrainingType!
|
|
upsertTrack(where: TrackWhereUniqueInput!, create: TrackCreateInput!, update: TrackUpdateInput!): Track!
|
|
upsertTrack(where: TrackWhereUniqueInput!, create: TrackCreateInput!, update: TrackUpdateInput!): Track!
|
|
upsertExercise(where: ExerciseWhereUniqueInput!, create: ExerciseCreateInput!, update: ExerciseUpdateInput!): Exercise!
|
|
upsertExercise(where: ExerciseWhereUniqueInput!, create: ExerciseCreateInput!, update: ExerciseUpdateInput!): Exercise!
|
|
- upsertBlockInstance(where: BlockInstanceWhereUniqueInput!, create: BlockInstanceCreateInput!, update: BlockInstanceUpdateInput!): BlockInstance!
|
|
|
|
upsertFormat(where: FormatWhereUniqueInput!, create: FormatCreateInput!, update: FormatUpdateInput!): Format!
|
|
upsertFormat(where: FormatWhereUniqueInput!, create: FormatCreateInput!, update: FormatUpdateInput!): Format!
|
|
upsertExerciseInstance(where: ExerciseInstanceWhereUniqueInput!, create: ExerciseInstanceCreateInput!, update: ExerciseInstanceUpdateInput!): ExerciseInstance!
|
|
upsertExerciseInstance(where: ExerciseInstanceWhereUniqueInput!, create: ExerciseInstanceCreateInput!, update: ExerciseInstanceUpdateInput!): ExerciseInstance!
|
|
upsertRating(where: RatingWhereUniqueInput!, create: RatingCreateInput!, update: RatingUpdateInput!): Rating!
|
|
upsertRating(where: RatingWhereUniqueInput!, create: RatingCreateInput!, update: RatingUpdateInput!): Rating!
|
|
updateManyTrainings(data: TrainingUpdateManyMutationInput!, where: TrainingWhereInput): BatchPayload!
|
|
updateManyTrainings(data: TrainingUpdateManyMutationInput!, where: TrainingWhereInput): BatchPayload!
|
|
updateManyBlocks(data: BlockUpdateManyMutationInput!, where: BlockWhereInput): BatchPayload!
|
|
updateManyBlocks(data: BlockUpdateManyMutationInput!, where: BlockWhereInput): BatchPayload!
|
|
|
|
+ updateManyBlockInstances(data: BlockInstanceUpdateManyMutationInput!, where: BlockInstanceWhereInput): BatchPayload!
|
|
updateManyComments(data: CommentUpdateManyMutationInput!, where: CommentWhereInput): BatchPayload!
|
|
updateManyComments(data: CommentUpdateManyMutationInput!, where: CommentWhereInput): BatchPayload!
|
|
updateManyUsers(data: UserUpdateManyMutationInput!, where: UserWhereInput): BatchPayload!
|
|
updateManyUsers(data: UserUpdateManyMutationInput!, where: UserWhereInput): BatchPayload!
|
|
updateManyTrainingTypes(data: TrainingTypeUpdateManyMutationInput!, where: TrainingTypeWhereInput): BatchPayload!
|
|
updateManyTrainingTypes(data: TrainingTypeUpdateManyMutationInput!, where: TrainingTypeWhereInput): BatchPayload!
|
|
updateManyTracks(data: TrackUpdateManyMutationInput!, where: TrackWhereInput): BatchPayload!
|
|
updateManyTracks(data: TrackUpdateManyMutationInput!, where: TrackWhereInput): BatchPayload!
|
|
updateManyExercises(data: ExerciseUpdateManyMutationInput!, where: ExerciseWhereInput): BatchPayload!
|
|
updateManyExercises(data: ExerciseUpdateManyMutationInput!, where: ExerciseWhereInput): BatchPayload!
|
|
- updateManyBlockInstances(data: BlockInstanceUpdateManyMutationInput!, where: BlockInstanceWhereInput): BatchPayload!
|
|
|
|
updateManyFormats(data: FormatUpdateManyMutationInput!, where: FormatWhereInput): BatchPayload!
|
|
updateManyFormats(data: FormatUpdateManyMutationInput!, where: FormatWhereInput): BatchPayload!
|
|
updateManyExerciseInstances(data: ExerciseInstanceUpdateManyMutationInput!, where: ExerciseInstanceWhereInput): BatchPayload!
|
|
updateManyExerciseInstances(data: ExerciseInstanceUpdateManyMutationInput!, where: ExerciseInstanceWhereInput): BatchPayload!
|
|
updateManyRatings(data: RatingUpdateManyMutationInput!, where: RatingWhereInput): BatchPayload!
|
|
updateManyRatings(data: RatingUpdateManyMutationInput!, where: RatingWhereInput): BatchPayload!
|
|
deleteManyTrainings(where: TrainingWhereInput): BatchPayload!
|
|
deleteManyTrainings(where: TrainingWhereInput): BatchPayload!
|
|
deleteManyBlocks(where: BlockWhereInput): BatchPayload!
|
|
deleteManyBlocks(where: BlockWhereInput): BatchPayload!
|
|
|
|
+ deleteManyBlockInstances(where: BlockInstanceWhereInput): BatchPayload!
|
|
deleteManyComments(where: CommentWhereInput): BatchPayload!
|
|
deleteManyComments(where: CommentWhereInput): BatchPayload!
|
|
deleteManyUsers(where: UserWhereInput): BatchPayload!
|
|
deleteManyUsers(where: UserWhereInput): BatchPayload!
|
|
deleteManyTrainingTypes(where: TrainingTypeWhereInput): BatchPayload!
|
|
deleteManyTrainingTypes(where: TrainingTypeWhereInput): BatchPayload!
|
|
deleteManyTracks(where: TrackWhereInput): BatchPayload!
|
|
deleteManyTracks(where: TrackWhereInput): BatchPayload!
|
|
deleteManyExercises(where: ExerciseWhereInput): BatchPayload!
|
|
deleteManyExercises(where: ExerciseWhereInput): BatchPayload!
|
|
- deleteManyBlockInstances(where: BlockInstanceWhereInput): BatchPayload!
|
|
|
|
deleteManyFormats(where: FormatWhereInput): BatchPayload!
|
|
deleteManyFormats(where: FormatWhereInput): BatchPayload!
|
|
deleteManyExerciseInstances(where: ExerciseInstanceWhereInput): BatchPayload!
|
|
deleteManyExerciseInstances(where: ExerciseInstanceWhereInput): BatchPayload!
|
|
deleteManyRatings(where: RatingWhereInput): BatchPayload!
|
|
deleteManyRatings(where: RatingWhereInput): BatchPayload!
|
|
@@ -2353,34 +2474,34 @@ enum Permission {
|
|
type Query {
|
|
type Query {
|
|
trainings(where: TrainingWhereInput, orderBy: TrainingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Training]!
|
|
trainings(where: TrainingWhereInput, orderBy: TrainingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Training]!
|
|
blocks(where: BlockWhereInput, orderBy: BlockOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Block]!
|
|
blocks(where: BlockWhereInput, orderBy: BlockOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Block]!
|
|
|
|
+ blockInstances(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance]!
|
|
comments(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Comment]!
|
|
comments(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Comment]!
|
|
users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User]!
|
|
users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User]!
|
|
trainingTypes(where: TrainingTypeWhereInput, orderBy: TrainingTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TrainingType]!
|
|
trainingTypes(where: TrainingTypeWhereInput, orderBy: TrainingTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [TrainingType]!
|
|
tracks(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Track]!
|
|
tracks(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Track]!
|
|
exercises(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Exercise]!
|
|
exercises(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Exercise]!
|
|
- blockInstances(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance]!
|
|
|
|
formats(where: FormatWhereInput, orderBy: FormatOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Format]!
|
|
formats(where: FormatWhereInput, orderBy: FormatOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Format]!
|
|
exerciseInstances(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ExerciseInstance]!
|
|
exerciseInstances(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ExerciseInstance]!
|
|
ratings(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Rating]!
|
|
ratings(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Rating]!
|
|
training(where: TrainingWhereUniqueInput!): Training
|
|
training(where: TrainingWhereUniqueInput!): Training
|
|
block(where: BlockWhereUniqueInput!): Block
|
|
block(where: BlockWhereUniqueInput!): Block
|
|
|
|
+ blockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
comment(where: CommentWhereUniqueInput!): Comment
|
|
comment(where: CommentWhereUniqueInput!): Comment
|
|
user(where: UserWhereUniqueInput!): User
|
|
user(where: UserWhereUniqueInput!): User
|
|
trainingType(where: TrainingTypeWhereUniqueInput!): TrainingType
|
|
trainingType(where: TrainingTypeWhereUniqueInput!): TrainingType
|
|
track(where: TrackWhereUniqueInput!): Track
|
|
track(where: TrackWhereUniqueInput!): Track
|
|
exercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
exercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
- blockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
|
|
format(where: FormatWhereUniqueInput!): Format
|
|
format(where: FormatWhereUniqueInput!): Format
|
|
exerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
exerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
rating(where: RatingWhereUniqueInput!): Rating
|
|
rating(where: RatingWhereUniqueInput!): Rating
|
|
trainingsConnection(where: TrainingWhereInput, orderBy: TrainingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrainingConnection!
|
|
trainingsConnection(where: TrainingWhereInput, orderBy: TrainingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrainingConnection!
|
|
blocksConnection(where: BlockWhereInput, orderBy: BlockOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): BlockConnection!
|
|
blocksConnection(where: BlockWhereInput, orderBy: BlockOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): BlockConnection!
|
|
|
|
+ blockInstancesConnection(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): BlockInstanceConnection!
|
|
commentsConnection(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): CommentConnection!
|
|
commentsConnection(where: CommentWhereInput, orderBy: CommentOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): CommentConnection!
|
|
usersConnection(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): UserConnection!
|
|
usersConnection(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): UserConnection!
|
|
trainingTypesConnection(where: TrainingTypeWhereInput, orderBy: TrainingTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrainingTypeConnection!
|
|
trainingTypesConnection(where: TrainingTypeWhereInput, orderBy: TrainingTypeOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrainingTypeConnection!
|
|
tracksConnection(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrackConnection!
|
|
tracksConnection(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrackConnection!
|
|
exercisesConnection(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExerciseConnection!
|
|
exercisesConnection(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExerciseConnection!
|
|
- blockInstancesConnection(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): BlockInstanceConnection!
|
|
|
|
formatsConnection(where: FormatWhereInput, orderBy: FormatOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): FormatConnection!
|
|
formatsConnection(where: FormatWhereInput, orderBy: FormatOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): FormatConnection!
|
|
exerciseInstancesConnection(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExerciseInstanceConnection!
|
|
exerciseInstancesConnection(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExerciseInstanceConnection!
|
|
ratingsConnection(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): RatingConnection!
|
|
ratingsConnection(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): RatingConnection!
|
|
@@ -2853,12 +2974,12 @@ input RatingWhereUniqueInput {
|
|
type Subscription {
|
|
type Subscription {
|
|
training(where: TrainingSubscriptionWhereInput): TrainingSubscriptionPayload
|
|
training(where: TrainingSubscriptionWhereInput): TrainingSubscriptionPayload
|
|
block(where: BlockSubscriptionWhereInput): BlockSubscriptionPayload
|
|
block(where: BlockSubscriptionWhereInput): BlockSubscriptionPayload
|
|
|
|
+ blockInstance(where: BlockInstanceSubscriptionWhereInput): BlockInstanceSubscriptionPayload
|
|
comment(where: CommentSubscriptionWhereInput): CommentSubscriptionPayload
|
|
comment(where: CommentSubscriptionWhereInput): CommentSubscriptionPayload
|
|
user(where: UserSubscriptionWhereInput): UserSubscriptionPayload
|
|
user(where: UserSubscriptionWhereInput): UserSubscriptionPayload
|
|
trainingType(where: TrainingTypeSubscriptionWhereInput): TrainingTypeSubscriptionPayload
|
|
trainingType(where: TrainingTypeSubscriptionWhereInput): TrainingTypeSubscriptionPayload
|
|
track(where: TrackSubscriptionWhereInput): TrackSubscriptionPayload
|
|
track(where: TrackSubscriptionWhereInput): TrackSubscriptionPayload
|
|
exercise(where: ExerciseSubscriptionWhereInput): ExerciseSubscriptionPayload
|
|
exercise(where: ExerciseSubscriptionWhereInput): ExerciseSubscriptionPayload
|
|
- blockInstance(where: BlockInstanceSubscriptionWhereInput): BlockInstanceSubscriptionPayload
|
|
|
|
format(where: FormatSubscriptionWhereInput): FormatSubscriptionPayload
|
|
format(where: FormatSubscriptionWhereInput): FormatSubscriptionPayload
|
|
exerciseInstance(where: ExerciseInstanceSubscriptionWhereInput): ExerciseInstanceSubscriptionPayload
|
|
exerciseInstance(where: ExerciseInstanceSubscriptionWhereInput): ExerciseInstanceSubscriptionPayload
|
|
rating(where: RatingSubscriptionWhereInput): RatingSubscriptionPayload
|
|
rating(where: RatingSubscriptionWhereInput): RatingSubscriptionPayload
|
|
@@ -3413,8 +3534,8 @@ type Training implements Node {
|
|
title: String!
|
|
title: String!
|
|
type: TrainingType!
|
|
type: TrainingType!
|
|
createdAt: DateTime!
|
|
createdAt: DateTime!
|
|
- trainingDate: DateTime
|
|
|
|
- location: String
|
|
|
|
|
|
+ trainingDate: DateTime!
|
|
|
|
+ location: String!
|
|
registrations(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!]
|
|
registrations(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!]
|
|
attendance: Int
|
|
attendance: Int
|
|
ratings(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Rating!]
|
|
ratings(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Rating!]
|
|
@@ -3435,14 +3556,31 @@ type TrainingConnection {
|
|
input TrainingCreateInput {
|
|
input TrainingCreateInput {
|
|
id: ID
|
|
id: ID
|
|
title: String!
|
|
title: String!
|
|
- trainingDate: DateTime
|
|
|
|
- location: String
|
|
|
|
|
|
+ trainingDate: DateTime!
|
|
|
|
+ location: String!
|
|
|
|
+ attendance: Int
|
|
|
|
+ published: Boolean!
|
|
|
|
+ type: TrainingTypeCreateOneInput!
|
|
|
|
+ registrations: UserCreateManyInput
|
|
|
|
+ ratings: RatingCreateManyInput
|
|
|
|
+ blocks: BlockInstanceCreateManyWithoutParentTrainingInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input TrainingCreateOneWithoutBlocksInput {
|
|
|
|
+ create: TrainingCreateWithoutBlocksInput
|
|
|
|
+ connect: TrainingWhereUniqueInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input TrainingCreateWithoutBlocksInput {
|
|
|
|
+ id: ID
|
|
|
|
+ title: String!
|
|
|
|
+ trainingDate: DateTime!
|
|
|
|
+ location: String!
|
|
attendance: Int
|
|
attendance: Int
|
|
published: Boolean!
|
|
published: Boolean!
|
|
type: TrainingTypeCreateOneInput!
|
|
type: TrainingTypeCreateOneInput!
|
|
registrations: UserCreateManyInput
|
|
registrations: UserCreateManyInput
|
|
ratings: RatingCreateManyInput
|
|
ratings: RatingCreateManyInput
|
|
- blocks: BlockInstanceCreateManyInput
|
|
|
|
}
|
|
}
|
|
|
|
|
|
"""An edge in a connection."""
|
|
"""An edge in a connection."""
|
|
@@ -3475,8 +3613,8 @@ type TrainingPreviousValues {
|
|
id: ID!
|
|
id: ID!
|
|
title: String!
|
|
title: String!
|
|
createdAt: DateTime!
|
|
createdAt: DateTime!
|
|
- trainingDate: DateTime
|
|
|
|
- location: String
|
|
|
|
|
|
+ trainingDate: DateTime!
|
|
|
|
+ location: String!
|
|
attendance: Int
|
|
attendance: Int
|
|
published: Boolean!
|
|
published: Boolean!
|
|
}
|
|
}
|
|
@@ -3778,7 +3916,7 @@ input TrainingUpdateInput {
|
|
type: TrainingTypeUpdateOneRequiredInput
|
|
type: TrainingTypeUpdateOneRequiredInput
|
|
registrations: UserUpdateManyInput
|
|
registrations: UserUpdateManyInput
|
|
ratings: RatingUpdateManyInput
|
|
ratings: RatingUpdateManyInput
|
|
- blocks: BlockInstanceUpdateManyInput
|
|
|
|
|
|
+ blocks: BlockInstanceUpdateManyWithoutParentTrainingInput
|
|
}
|
|
}
|
|
|
|
|
|
input TrainingUpdateManyMutationInput {
|
|
input TrainingUpdateManyMutationInput {
|
|
@@ -3789,6 +3927,31 @@ input TrainingUpdateManyMutationInput {
|
|
published: Boolean
|
|
published: Boolean
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input TrainingUpdateOneWithoutBlocksInput {
|
|
|
|
+ create: TrainingCreateWithoutBlocksInput
|
|
|
|
+ connect: TrainingWhereUniqueInput
|
|
|
|
+ disconnect: Boolean
|
|
|
|
+ delete: Boolean
|
|
|
|
+ update: TrainingUpdateWithoutBlocksDataInput
|
|
|
|
+ upsert: TrainingUpsertWithoutBlocksInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input TrainingUpdateWithoutBlocksDataInput {
|
|
|
|
+ title: String
|
|
|
|
+ trainingDate: DateTime
|
|
|
|
+ location: String
|
|
|
|
+ attendance: Int
|
|
|
|
+ published: Boolean
|
|
|
|
+ type: TrainingTypeUpdateOneRequiredInput
|
|
|
|
+ registrations: UserUpdateManyInput
|
|
|
|
+ ratings: RatingUpdateManyInput
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input TrainingUpsertWithoutBlocksInput {
|
|
|
|
+ update: TrainingUpdateWithoutBlocksDataInput!
|
|
|
|
+ create: TrainingCreateWithoutBlocksInput!
|
|
|
|
+}
|
|
|
|
+
|
|
input TrainingWhereInput {
|
|
input TrainingWhereInput {
|
|
"""Logical AND on all given filters."""
|
|
"""Logical AND on all given filters."""
|
|
AND: [TrainingWhereInput!]
|
|
AND: [TrainingWhereInput!]
|