|
@@ -1,5 +1,5 @@
|
|
# source: http://prisma:4466
|
|
# source: http://prisma:4466
|
|
-# timestamp: Fri Apr 24 2020 14:04:06 GMT+0000 (Coordinated Universal Time)
|
|
|
|
|
|
+# timestamp: Sat Apr 25 2020 23:03:26 GMT+0000 (Coordinated Universal Time)
|
|
|
|
|
|
type AggregateBlock {
|
|
type AggregateBlock {
|
|
count: Int!
|
|
count: Int!
|
|
@@ -70,8 +70,8 @@ type Block implements Node {
|
|
format: Format!
|
|
format: Format!
|
|
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!]
|
|
- videos: [String!]!
|
|
|
|
- pictures: [String!]!
|
|
|
|
|
|
+ videos(where: VideoWhereInput, orderBy: VideoOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Video!]
|
|
|
|
+ pictures(where: PictureWhereInput, orderBy: PictureOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Picture!]
|
|
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!]
|
|
parentBlockInstances(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance!]
|
|
parentBlockInstances(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!]
|
|
@@ -93,10 +93,10 @@ input BlockCreateInput {
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: BlockCreatevideosInput
|
|
|
|
- pictures: BlockCreatepicturesInput
|
|
|
|
format: FormatCreateOneInput!
|
|
format: FormatCreateOneInput!
|
|
tracks: TrackCreateManyInput
|
|
tracks: TrackCreateManyInput
|
|
|
|
+ videos: VideoCreateManyInput
|
|
|
|
+ pictures: PictureCreateManyInput
|
|
blocks: BlockInstanceCreateManyWithoutParentBlockInput
|
|
blocks: BlockInstanceCreateManyWithoutParentBlockInput
|
|
parentBlockInstances: BlockInstanceCreateManyWithoutBlockInput
|
|
parentBlockInstances: BlockInstanceCreateManyWithoutBlockInput
|
|
exercises: ExerciseInstanceCreateManyWithoutParentBlockInstancesInput
|
|
exercises: ExerciseInstanceCreateManyWithoutParentBlockInstancesInput
|
|
@@ -117,24 +117,16 @@ input BlockCreateOneWithoutParentBlockInstancesInput {
|
|
connect: BlockWhereUniqueInput
|
|
connect: BlockWhereUniqueInput
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockCreatepicturesInput {
|
|
|
|
- set: [String!]
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-input BlockCreatevideosInput {
|
|
|
|
- set: [String!]
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
input BlockCreateWithoutBlocksInput {
|
|
input BlockCreateWithoutBlocksInput {
|
|
id: ID
|
|
id: ID
|
|
title: String!
|
|
title: String!
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: BlockCreatevideosInput
|
|
|
|
- pictures: BlockCreatepicturesInput
|
|
|
|
format: FormatCreateOneInput!
|
|
format: FormatCreateOneInput!
|
|
tracks: TrackCreateManyInput
|
|
tracks: TrackCreateManyInput
|
|
|
|
+ videos: VideoCreateManyInput
|
|
|
|
+ pictures: PictureCreateManyInput
|
|
parentBlockInstances: BlockInstanceCreateManyWithoutBlockInput
|
|
parentBlockInstances: BlockInstanceCreateManyWithoutBlockInput
|
|
exercises: ExerciseInstanceCreateManyWithoutParentBlockInstancesInput
|
|
exercises: ExerciseInstanceCreateManyWithoutParentBlockInstancesInput
|
|
}
|
|
}
|
|
@@ -145,10 +137,10 @@ input BlockCreateWithoutExercisesInput {
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: BlockCreatevideosInput
|
|
|
|
- pictures: BlockCreatepicturesInput
|
|
|
|
format: FormatCreateOneInput!
|
|
format: FormatCreateOneInput!
|
|
tracks: TrackCreateManyInput
|
|
tracks: TrackCreateManyInput
|
|
|
|
+ videos: VideoCreateManyInput
|
|
|
|
+ pictures: PictureCreateManyInput
|
|
blocks: BlockInstanceCreateManyWithoutParentBlockInput
|
|
blocks: BlockInstanceCreateManyWithoutParentBlockInput
|
|
parentBlockInstances: BlockInstanceCreateManyWithoutBlockInput
|
|
parentBlockInstances: BlockInstanceCreateManyWithoutBlockInput
|
|
}
|
|
}
|
|
@@ -159,10 +151,10 @@ input BlockCreateWithoutParentBlockInstancesInput {
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: BlockCreatevideosInput
|
|
|
|
- pictures: BlockCreatepicturesInput
|
|
|
|
format: FormatCreateOneInput!
|
|
format: FormatCreateOneInput!
|
|
tracks: TrackCreateManyInput
|
|
tracks: TrackCreateManyInput
|
|
|
|
+ videos: VideoCreateManyInput
|
|
|
|
+ pictures: PictureCreateManyInput
|
|
blocks: BlockInstanceCreateManyWithoutParentBlockInput
|
|
blocks: BlockInstanceCreateManyWithoutParentBlockInput
|
|
exercises: ExerciseInstanceCreateManyWithoutParentBlockInstancesInput
|
|
exercises: ExerciseInstanceCreateManyWithoutParentBlockInstancesInput
|
|
}
|
|
}
|
|
@@ -727,8 +719,6 @@ type BlockPreviousValues {
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: [String!]!
|
|
|
|
- pictures: [String!]!
|
|
|
|
}
|
|
}
|
|
|
|
|
|
type BlockSubscriptionPayload {
|
|
type BlockSubscriptionPayload {
|
|
@@ -773,10 +763,10 @@ input BlockUpdateInput {
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: BlockUpdatevideosInput
|
|
|
|
- pictures: BlockUpdatepicturesInput
|
|
|
|
format: FormatUpdateOneRequiredInput
|
|
format: FormatUpdateOneRequiredInput
|
|
tracks: TrackUpdateManyInput
|
|
tracks: TrackUpdateManyInput
|
|
|
|
+ videos: VideoUpdateManyInput
|
|
|
|
+ pictures: PictureUpdateManyInput
|
|
blocks: BlockInstanceUpdateManyWithoutParentBlockInput
|
|
blocks: BlockInstanceUpdateManyWithoutParentBlockInput
|
|
parentBlockInstances: BlockInstanceUpdateManyWithoutBlockInput
|
|
parentBlockInstances: BlockInstanceUpdateManyWithoutBlockInput
|
|
exercises: ExerciseInstanceUpdateManyWithoutParentBlockInstancesInput
|
|
exercises: ExerciseInstanceUpdateManyWithoutParentBlockInstancesInput
|
|
@@ -787,8 +777,6 @@ input BlockUpdateManyMutationInput {
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: BlockUpdatevideosInput
|
|
|
|
- pictures: BlockUpdatepicturesInput
|
|
|
|
}
|
|
}
|
|
|
|
|
|
input BlockUpdateOneRequiredWithoutExercisesInput {
|
|
input BlockUpdateOneRequiredWithoutExercisesInput {
|
|
@@ -814,23 +802,15 @@ input BlockUpdateOneWithoutBlocksInput {
|
|
upsert: BlockUpsertWithoutBlocksInput
|
|
upsert: BlockUpsertWithoutBlocksInput
|
|
}
|
|
}
|
|
|
|
|
|
-input BlockUpdatepicturesInput {
|
|
|
|
- set: [String!]
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-input BlockUpdatevideosInput {
|
|
|
|
- set: [String!]
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
input BlockUpdateWithoutBlocksDataInput {
|
|
input BlockUpdateWithoutBlocksDataInput {
|
|
title: String
|
|
title: String
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: BlockUpdatevideosInput
|
|
|
|
- pictures: BlockUpdatepicturesInput
|
|
|
|
format: FormatUpdateOneRequiredInput
|
|
format: FormatUpdateOneRequiredInput
|
|
tracks: TrackUpdateManyInput
|
|
tracks: TrackUpdateManyInput
|
|
|
|
+ videos: VideoUpdateManyInput
|
|
|
|
+ pictures: PictureUpdateManyInput
|
|
parentBlockInstances: BlockInstanceUpdateManyWithoutBlockInput
|
|
parentBlockInstances: BlockInstanceUpdateManyWithoutBlockInput
|
|
exercises: ExerciseInstanceUpdateManyWithoutParentBlockInstancesInput
|
|
exercises: ExerciseInstanceUpdateManyWithoutParentBlockInstancesInput
|
|
}
|
|
}
|
|
@@ -840,10 +820,10 @@ input BlockUpdateWithoutExercisesDataInput {
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: BlockUpdatevideosInput
|
|
|
|
- pictures: BlockUpdatepicturesInput
|
|
|
|
format: FormatUpdateOneRequiredInput
|
|
format: FormatUpdateOneRequiredInput
|
|
tracks: TrackUpdateManyInput
|
|
tracks: TrackUpdateManyInput
|
|
|
|
+ videos: VideoUpdateManyInput
|
|
|
|
+ pictures: PictureUpdateManyInput
|
|
blocks: BlockInstanceUpdateManyWithoutParentBlockInput
|
|
blocks: BlockInstanceUpdateManyWithoutParentBlockInput
|
|
parentBlockInstances: BlockInstanceUpdateManyWithoutBlockInput
|
|
parentBlockInstances: BlockInstanceUpdateManyWithoutBlockInput
|
|
}
|
|
}
|
|
@@ -853,10 +833,10 @@ input BlockUpdateWithoutParentBlockInstancesDataInput {
|
|
description: String
|
|
description: String
|
|
duration: Int
|
|
duration: Int
|
|
rest: Int
|
|
rest: Int
|
|
- videos: BlockUpdatevideosInput
|
|
|
|
- pictures: BlockUpdatepicturesInput
|
|
|
|
format: FormatUpdateOneRequiredInput
|
|
format: FormatUpdateOneRequiredInput
|
|
tracks: TrackUpdateManyInput
|
|
tracks: TrackUpdateManyInput
|
|
|
|
+ videos: VideoUpdateManyInput
|
|
|
|
+ pictures: PictureUpdateManyInput
|
|
blocks: BlockInstanceUpdateManyWithoutParentBlockInput
|
|
blocks: BlockInstanceUpdateManyWithoutParentBlockInput
|
|
exercises: ExerciseInstanceUpdateManyWithoutParentBlockInstancesInput
|
|
exercises: ExerciseInstanceUpdateManyWithoutParentBlockInstancesInput
|
|
}
|
|
}
|
|
@@ -1053,6 +1033,12 @@ input BlockWhereInput {
|
|
tracks_every: TrackWhereInput
|
|
tracks_every: TrackWhereInput
|
|
tracks_some: TrackWhereInput
|
|
tracks_some: TrackWhereInput
|
|
tracks_none: TrackWhereInput
|
|
tracks_none: TrackWhereInput
|
|
|
|
+ videos_every: VideoWhereInput
|
|
|
|
+ videos_some: VideoWhereInput
|
|
|
|
+ videos_none: VideoWhereInput
|
|
|
|
+ pictures_every: PictureWhereInput
|
|
|
|
+ pictures_some: PictureWhereInput
|
|
|
|
+ pictures_none: PictureWhereInput
|
|
blocks_every: BlockInstanceWhereInput
|
|
blocks_every: BlockInstanceWhereInput
|
|
blocks_some: BlockInstanceWhereInput
|
|
blocks_some: BlockInstanceWhereInput
|
|
blocks_none: BlockInstanceWhereInput
|
|
blocks_none: BlockInstanceWhereInput
|
|
@@ -1444,8 +1430,8 @@ type Exercise implements Node {
|
|
id: ID!
|
|
id: ID!
|
|
name: String!
|
|
name: String!
|
|
description: String
|
|
description: String
|
|
- videos: [String!]!
|
|
|
|
- pictures: [String!]!
|
|
|
|
|
|
+ videos(where: VideoWhereInput, orderBy: VideoOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Video!]
|
|
|
|
+ pictures(where: PictureWhereInput, orderBy: PictureOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Picture!]
|
|
targets: [String!]!
|
|
targets: [String!]!
|
|
baseExercise: [String!]!
|
|
baseExercise: [String!]!
|
|
parentExerciseInstances(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ExerciseInstance!]
|
|
parentExerciseInstances(where: ExerciseInstanceWhereInput, orderBy: ExerciseInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [ExerciseInstance!]
|
|
@@ -1469,10 +1455,10 @@ input ExerciseCreateInput {
|
|
id: ID
|
|
id: ID
|
|
name: String!
|
|
name: String!
|
|
description: String
|
|
description: String
|
|
- videos: ExerciseCreatevideosInput
|
|
|
|
- pictures: ExerciseCreatepicturesInput
|
|
|
|
targets: ExerciseCreatetargetsInput
|
|
targets: ExerciseCreatetargetsInput
|
|
baseExercise: ExerciseCreatebaseExerciseInput
|
|
baseExercise: ExerciseCreatebaseExerciseInput
|
|
|
|
+ videos: VideoCreateManyInput
|
|
|
|
+ pictures: PictureCreateManyInput
|
|
parentExerciseInstances: ExerciseInstanceCreateManyWithoutExerciseInput
|
|
parentExerciseInstances: ExerciseInstanceCreateManyWithoutExerciseInput
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1481,26 +1467,18 @@ input ExerciseCreateOneWithoutParentExerciseInstancesInput {
|
|
connect: ExerciseWhereUniqueInput
|
|
connect: ExerciseWhereUniqueInput
|
|
}
|
|
}
|
|
|
|
|
|
-input ExerciseCreatepicturesInput {
|
|
|
|
- set: [String!]
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
input ExerciseCreatetargetsInput {
|
|
input ExerciseCreatetargetsInput {
|
|
set: [String!]
|
|
set: [String!]
|
|
}
|
|
}
|
|
|
|
|
|
-input ExerciseCreatevideosInput {
|
|
|
|
- set: [String!]
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
input ExerciseCreateWithoutParentExerciseInstancesInput {
|
|
input ExerciseCreateWithoutParentExerciseInstancesInput {
|
|
id: ID
|
|
id: ID
|
|
name: String!
|
|
name: String!
|
|
description: String
|
|
description: String
|
|
- videos: ExerciseCreatevideosInput
|
|
|
|
- pictures: ExerciseCreatepicturesInput
|
|
|
|
targets: ExerciseCreatetargetsInput
|
|
targets: ExerciseCreatetargetsInput
|
|
baseExercise: ExerciseCreatebaseExerciseInput
|
|
baseExercise: ExerciseCreatebaseExerciseInput
|
|
|
|
+ videos: VideoCreateManyInput
|
|
|
|
+ pictures: PictureCreateManyInput
|
|
}
|
|
}
|
|
|
|
|
|
"""An edge in a connection."""
|
|
"""An edge in a connection."""
|
|
@@ -2004,8 +1982,6 @@ type ExercisePreviousValues {
|
|
id: ID!
|
|
id: ID!
|
|
name: String!
|
|
name: String!
|
|
description: String
|
|
description: String
|
|
- videos: [String!]!
|
|
|
|
- pictures: [String!]!
|
|
|
|
targets: [String!]!
|
|
targets: [String!]!
|
|
baseExercise: [String!]!
|
|
baseExercise: [String!]!
|
|
}
|
|
}
|
|
@@ -2054,18 +2030,16 @@ input ExerciseUpdatebaseExerciseInput {
|
|
input ExerciseUpdateInput {
|
|
input ExerciseUpdateInput {
|
|
name: String
|
|
name: String
|
|
description: String
|
|
description: String
|
|
- videos: ExerciseUpdatevideosInput
|
|
|
|
- pictures: ExerciseUpdatepicturesInput
|
|
|
|
targets: ExerciseUpdatetargetsInput
|
|
targets: ExerciseUpdatetargetsInput
|
|
baseExercise: ExerciseUpdatebaseExerciseInput
|
|
baseExercise: ExerciseUpdatebaseExerciseInput
|
|
|
|
+ videos: VideoUpdateManyInput
|
|
|
|
+ pictures: PictureUpdateManyInput
|
|
parentExerciseInstances: ExerciseInstanceUpdateManyWithoutExerciseInput
|
|
parentExerciseInstances: ExerciseInstanceUpdateManyWithoutExerciseInput
|
|
}
|
|
}
|
|
|
|
|
|
input ExerciseUpdateManyMutationInput {
|
|
input ExerciseUpdateManyMutationInput {
|
|
name: String
|
|
name: String
|
|
description: String
|
|
description: String
|
|
- videos: ExerciseUpdatevideosInput
|
|
|
|
- pictures: ExerciseUpdatepicturesInput
|
|
|
|
targets: ExerciseUpdatetargetsInput
|
|
targets: ExerciseUpdatetargetsInput
|
|
baseExercise: ExerciseUpdatebaseExerciseInput
|
|
baseExercise: ExerciseUpdatebaseExerciseInput
|
|
}
|
|
}
|
|
@@ -2077,25 +2051,17 @@ input ExerciseUpdateOneRequiredWithoutParentExerciseInstancesInput {
|
|
upsert: ExerciseUpsertWithoutParentExerciseInstancesInput
|
|
upsert: ExerciseUpsertWithoutParentExerciseInstancesInput
|
|
}
|
|
}
|
|
|
|
|
|
-input ExerciseUpdatepicturesInput {
|
|
|
|
- set: [String!]
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
input ExerciseUpdatetargetsInput {
|
|
input ExerciseUpdatetargetsInput {
|
|
set: [String!]
|
|
set: [String!]
|
|
}
|
|
}
|
|
|
|
|
|
-input ExerciseUpdatevideosInput {
|
|
|
|
- set: [String!]
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
input ExerciseUpdateWithoutParentExerciseInstancesDataInput {
|
|
input ExerciseUpdateWithoutParentExerciseInstancesDataInput {
|
|
name: String
|
|
name: String
|
|
description: String
|
|
description: String
|
|
- videos: ExerciseUpdatevideosInput
|
|
|
|
- pictures: ExerciseUpdatepicturesInput
|
|
|
|
targets: ExerciseUpdatetargetsInput
|
|
targets: ExerciseUpdatetargetsInput
|
|
baseExercise: ExerciseUpdatebaseExerciseInput
|
|
baseExercise: ExerciseUpdatebaseExerciseInput
|
|
|
|
+ videos: VideoUpdateManyInput
|
|
|
|
+ pictures: PictureUpdateManyInput
|
|
}
|
|
}
|
|
|
|
|
|
input ExerciseUpsertWithoutParentExerciseInstancesInput {
|
|
input ExerciseUpsertWithoutParentExerciseInstancesInput {
|
|
@@ -2232,6 +2198,12 @@ input ExerciseWhereInput {
|
|
|
|
|
|
"""All values not ending with the given string."""
|
|
"""All values not ending with the given string."""
|
|
description_not_ends_with: String
|
|
description_not_ends_with: String
|
|
|
|
+ videos_every: VideoWhereInput
|
|
|
|
+ videos_some: VideoWhereInput
|
|
|
|
+ videos_none: VideoWhereInput
|
|
|
|
+ pictures_every: PictureWhereInput
|
|
|
|
+ pictures_some: PictureWhereInput
|
|
|
|
+ pictures_none: PictureWhereInput
|
|
parentExerciseInstances_every: ExerciseInstanceWhereInput
|
|
parentExerciseInstances_every: ExerciseInstanceWhereInput
|
|
parentExerciseInstances_some: ExerciseInstanceWhereInput
|
|
parentExerciseInstances_some: ExerciseInstanceWhereInput
|
|
parentExerciseInstances_none: ExerciseInstanceWhereInput
|
|
parentExerciseInstances_none: ExerciseInstanceWhereInput
|
|
@@ -3032,7 +3004,6 @@ type Mutation {
|
|
createTraining(data: TrainingCreateInput!): Training!
|
|
createTraining(data: TrainingCreateInput!): Training!
|
|
createBlock(data: BlockCreateInput!): Block!
|
|
createBlock(data: BlockCreateInput!): Block!
|
|
createBlockInstance(data: BlockInstanceCreateInput!): BlockInstance!
|
|
createBlockInstance(data: BlockInstanceCreateInput!): BlockInstance!
|
|
- createVideo(data: VideoCreateInput!): Video!
|
|
|
|
createExercise(data: ExerciseCreateInput!): Exercise!
|
|
createExercise(data: ExerciseCreateInput!): Exercise!
|
|
createExerciseInstance(data: ExerciseInstanceCreateInput!): ExerciseInstance!
|
|
createExerciseInstance(data: ExerciseInstanceCreateInput!): ExerciseInstance!
|
|
createComment(data: CommentCreateInput!): Comment!
|
|
createComment(data: CommentCreateInput!): Comment!
|
|
@@ -3040,13 +3011,13 @@ type Mutation {
|
|
createUser(data: UserCreateInput!): User!
|
|
createUser(data: UserCreateInput!): User!
|
|
createTrack(data: TrackCreateInput!): Track!
|
|
createTrack(data: TrackCreateInput!): Track!
|
|
createFile(data: FileCreateInput!): File!
|
|
createFile(data: FileCreateInput!): File!
|
|
- createPicture(data: PictureCreateInput!): Picture!
|
|
|
|
createFormat(data: FormatCreateInput!): Format!
|
|
createFormat(data: FormatCreateInput!): Format!
|
|
|
|
+ createPicture(data: PictureCreateInput!): Picture!
|
|
createRating(data: RatingCreateInput!): Rating!
|
|
createRating(data: RatingCreateInput!): Rating!
|
|
|
|
+ createVideo(data: VideoCreateInput!): Video!
|
|
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
|
|
updateBlockInstance(data: BlockInstanceUpdateInput!, where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
- updateVideo(data: VideoUpdateInput!, where: VideoWhereUniqueInput!): Video
|
|
|
|
updateExercise(data: ExerciseUpdateInput!, where: ExerciseWhereUniqueInput!): Exercise
|
|
updateExercise(data: ExerciseUpdateInput!, where: ExerciseWhereUniqueInput!): Exercise
|
|
updateExerciseInstance(data: ExerciseInstanceUpdateInput!, where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
updateExerciseInstance(data: ExerciseInstanceUpdateInput!, where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
updateComment(data: CommentUpdateInput!, where: CommentWhereUniqueInput!): Comment
|
|
updateComment(data: CommentUpdateInput!, where: CommentWhereUniqueInput!): Comment
|
|
@@ -3054,13 +3025,13 @@ type Mutation {
|
|
updateUser(data: UserUpdateInput!, where: UserWhereUniqueInput!): User
|
|
updateUser(data: UserUpdateInput!, where: UserWhereUniqueInput!): User
|
|
updateTrack(data: TrackUpdateInput!, where: TrackWhereUniqueInput!): Track
|
|
updateTrack(data: TrackUpdateInput!, where: TrackWhereUniqueInput!): Track
|
|
updateFile(data: FileUpdateInput!, where: FileWhereUniqueInput!): File
|
|
updateFile(data: FileUpdateInput!, where: FileWhereUniqueInput!): File
|
|
- updatePicture(data: PictureUpdateInput!, where: PictureWhereUniqueInput!): Picture
|
|
|
|
updateFormat(data: FormatUpdateInput!, where: FormatWhereUniqueInput!): Format
|
|
updateFormat(data: FormatUpdateInput!, where: FormatWhereUniqueInput!): Format
|
|
|
|
+ updatePicture(data: PictureUpdateInput!, where: PictureWhereUniqueInput!): Picture
|
|
updateRating(data: RatingUpdateInput!, where: RatingWhereUniqueInput!): Rating
|
|
updateRating(data: RatingUpdateInput!, where: RatingWhereUniqueInput!): Rating
|
|
|
|
+ updateVideo(data: VideoUpdateInput!, where: VideoWhereUniqueInput!): Video
|
|
deleteTraining(where: TrainingWhereUniqueInput!): Training
|
|
deleteTraining(where: TrainingWhereUniqueInput!): Training
|
|
deleteBlock(where: BlockWhereUniqueInput!): Block
|
|
deleteBlock(where: BlockWhereUniqueInput!): Block
|
|
deleteBlockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
deleteBlockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
- deleteVideo(where: VideoWhereUniqueInput!): Video
|
|
|
|
deleteExercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
deleteExercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
deleteExerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
deleteExerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
deleteComment(where: CommentWhereUniqueInput!): Comment
|
|
deleteComment(where: CommentWhereUniqueInput!): Comment
|
|
@@ -3068,13 +3039,13 @@ type Mutation {
|
|
deleteUser(where: UserWhereUniqueInput!): User
|
|
deleteUser(where: UserWhereUniqueInput!): User
|
|
deleteTrack(where: TrackWhereUniqueInput!): Track
|
|
deleteTrack(where: TrackWhereUniqueInput!): Track
|
|
deleteFile(where: FileWhereUniqueInput!): File
|
|
deleteFile(where: FileWhereUniqueInput!): File
|
|
- deletePicture(where: PictureWhereUniqueInput!): Picture
|
|
|
|
deleteFormat(where: FormatWhereUniqueInput!): Format
|
|
deleteFormat(where: FormatWhereUniqueInput!): Format
|
|
|
|
+ deletePicture(where: PictureWhereUniqueInput!): Picture
|
|
deleteRating(where: RatingWhereUniqueInput!): Rating
|
|
deleteRating(where: RatingWhereUniqueInput!): Rating
|
|
|
|
+ deleteVideo(where: VideoWhereUniqueInput!): Video
|
|
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!
|
|
upsertBlockInstance(where: BlockInstanceWhereUniqueInput!, create: BlockInstanceCreateInput!, update: BlockInstanceUpdateInput!): BlockInstance!
|
|
- upsertVideo(where: VideoWhereUniqueInput!, create: VideoCreateInput!, update: VideoUpdateInput!): Video!
|
|
|
|
upsertExercise(where: ExerciseWhereUniqueInput!, create: ExerciseCreateInput!, update: ExerciseUpdateInput!): Exercise!
|
|
upsertExercise(where: ExerciseWhereUniqueInput!, create: ExerciseCreateInput!, update: ExerciseUpdateInput!): Exercise!
|
|
upsertExerciseInstance(where: ExerciseInstanceWhereUniqueInput!, create: ExerciseInstanceCreateInput!, update: ExerciseInstanceUpdateInput!): ExerciseInstance!
|
|
upsertExerciseInstance(where: ExerciseInstanceWhereUniqueInput!, create: ExerciseInstanceCreateInput!, update: ExerciseInstanceUpdateInput!): ExerciseInstance!
|
|
upsertComment(where: CommentWhereUniqueInput!, create: CommentCreateInput!, update: CommentUpdateInput!): Comment!
|
|
upsertComment(where: CommentWhereUniqueInput!, create: CommentCreateInput!, update: CommentUpdateInput!): Comment!
|
|
@@ -3082,13 +3053,13 @@ type Mutation {
|
|
upsertUser(where: UserWhereUniqueInput!, create: UserCreateInput!, update: UserUpdateInput!): User!
|
|
upsertUser(where: UserWhereUniqueInput!, create: UserCreateInput!, update: UserUpdateInput!): User!
|
|
upsertTrack(where: TrackWhereUniqueInput!, create: TrackCreateInput!, update: TrackUpdateInput!): Track!
|
|
upsertTrack(where: TrackWhereUniqueInput!, create: TrackCreateInput!, update: TrackUpdateInput!): Track!
|
|
upsertFile(where: FileWhereUniqueInput!, create: FileCreateInput!, update: FileUpdateInput!): File!
|
|
upsertFile(where: FileWhereUniqueInput!, create: FileCreateInput!, update: FileUpdateInput!): File!
|
|
- upsertPicture(where: PictureWhereUniqueInput!, create: PictureCreateInput!, update: PictureUpdateInput!): Picture!
|
|
|
|
upsertFormat(where: FormatWhereUniqueInput!, create: FormatCreateInput!, update: FormatUpdateInput!): Format!
|
|
upsertFormat(where: FormatWhereUniqueInput!, create: FormatCreateInput!, update: FormatUpdateInput!): Format!
|
|
|
|
+ upsertPicture(where: PictureWhereUniqueInput!, create: PictureCreateInput!, update: PictureUpdateInput!): Picture!
|
|
upsertRating(where: RatingWhereUniqueInput!, create: RatingCreateInput!, update: RatingUpdateInput!): Rating!
|
|
upsertRating(where: RatingWhereUniqueInput!, create: RatingCreateInput!, update: RatingUpdateInput!): Rating!
|
|
|
|
+ upsertVideo(where: VideoWhereUniqueInput!, create: VideoCreateInput!, update: VideoUpdateInput!): Video!
|
|
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!
|
|
updateManyBlockInstances(data: BlockInstanceUpdateManyMutationInput!, where: BlockInstanceWhereInput): BatchPayload!
|
|
- updateManyVideos(data: VideoUpdateManyMutationInput!, where: VideoWhereInput): BatchPayload!
|
|
|
|
updateManyExercises(data: ExerciseUpdateManyMutationInput!, where: ExerciseWhereInput): BatchPayload!
|
|
updateManyExercises(data: ExerciseUpdateManyMutationInput!, where: ExerciseWhereInput): BatchPayload!
|
|
updateManyExerciseInstances(data: ExerciseInstanceUpdateManyMutationInput!, where: ExerciseInstanceWhereInput): BatchPayload!
|
|
updateManyExerciseInstances(data: ExerciseInstanceUpdateManyMutationInput!, where: ExerciseInstanceWhereInput): BatchPayload!
|
|
updateManyComments(data: CommentUpdateManyMutationInput!, where: CommentWhereInput): BatchPayload!
|
|
updateManyComments(data: CommentUpdateManyMutationInput!, where: CommentWhereInput): BatchPayload!
|
|
@@ -3096,13 +3067,13 @@ type Mutation {
|
|
updateManyUsers(data: UserUpdateManyMutationInput!, where: UserWhereInput): BatchPayload!
|
|
updateManyUsers(data: UserUpdateManyMutationInput!, where: UserWhereInput): BatchPayload!
|
|
updateManyTracks(data: TrackUpdateManyMutationInput!, where: TrackWhereInput): BatchPayload!
|
|
updateManyTracks(data: TrackUpdateManyMutationInput!, where: TrackWhereInput): BatchPayload!
|
|
updateManyFiles(data: FileUpdateManyMutationInput!, where: FileWhereInput): BatchPayload!
|
|
updateManyFiles(data: FileUpdateManyMutationInput!, where: FileWhereInput): BatchPayload!
|
|
- updateManyPictures(data: PictureUpdateManyMutationInput!, where: PictureWhereInput): BatchPayload!
|
|
|
|
updateManyFormats(data: FormatUpdateManyMutationInput!, where: FormatWhereInput): BatchPayload!
|
|
updateManyFormats(data: FormatUpdateManyMutationInput!, where: FormatWhereInput): BatchPayload!
|
|
|
|
+ updateManyPictures(data: PictureUpdateManyMutationInput!, where: PictureWhereInput): BatchPayload!
|
|
updateManyRatings(data: RatingUpdateManyMutationInput!, where: RatingWhereInput): BatchPayload!
|
|
updateManyRatings(data: RatingUpdateManyMutationInput!, where: RatingWhereInput): BatchPayload!
|
|
|
|
+ updateManyVideos(data: VideoUpdateManyMutationInput!, where: VideoWhereInput): BatchPayload!
|
|
deleteManyTrainings(where: TrainingWhereInput): BatchPayload!
|
|
deleteManyTrainings(where: TrainingWhereInput): BatchPayload!
|
|
deleteManyBlocks(where: BlockWhereInput): BatchPayload!
|
|
deleteManyBlocks(where: BlockWhereInput): BatchPayload!
|
|
deleteManyBlockInstances(where: BlockInstanceWhereInput): BatchPayload!
|
|
deleteManyBlockInstances(where: BlockInstanceWhereInput): BatchPayload!
|
|
- deleteManyVideos(where: VideoWhereInput): BatchPayload!
|
|
|
|
deleteManyExercises(where: ExerciseWhereInput): BatchPayload!
|
|
deleteManyExercises(where: ExerciseWhereInput): BatchPayload!
|
|
deleteManyExerciseInstances(where: ExerciseInstanceWhereInput): BatchPayload!
|
|
deleteManyExerciseInstances(where: ExerciseInstanceWhereInput): BatchPayload!
|
|
deleteManyComments(where: CommentWhereInput): BatchPayload!
|
|
deleteManyComments(where: CommentWhereInput): BatchPayload!
|
|
@@ -3110,9 +3081,10 @@ type Mutation {
|
|
deleteManyUsers(where: UserWhereInput): BatchPayload!
|
|
deleteManyUsers(where: UserWhereInput): BatchPayload!
|
|
deleteManyTracks(where: TrackWhereInput): BatchPayload!
|
|
deleteManyTracks(where: TrackWhereInput): BatchPayload!
|
|
deleteManyFiles(where: FileWhereInput): BatchPayload!
|
|
deleteManyFiles(where: FileWhereInput): BatchPayload!
|
|
- deleteManyPictures(where: PictureWhereInput): BatchPayload!
|
|
|
|
deleteManyFormats(where: FormatWhereInput): BatchPayload!
|
|
deleteManyFormats(where: FormatWhereInput): BatchPayload!
|
|
|
|
+ deleteManyPictures(where: PictureWhereInput): BatchPayload!
|
|
deleteManyRatings(where: RatingWhereInput): BatchPayload!
|
|
deleteManyRatings(where: RatingWhereInput): BatchPayload!
|
|
|
|
+ deleteManyVideos(where: VideoWhereInput): BatchPayload!
|
|
}
|
|
}
|
|
|
|
|
|
enum MutationType {
|
|
enum MutationType {
|
|
@@ -3173,6 +3145,11 @@ input PictureCreateInput {
|
|
file: FileCreateOneInput
|
|
file: FileCreateOneInput
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input PictureCreateManyInput {
|
|
|
|
+ create: [PictureCreateInput!]
|
|
|
|
+ connect: [PictureWhereUniqueInput!]
|
|
|
|
+}
|
|
|
|
+
|
|
input PictureCreateOneInput {
|
|
input PictureCreateOneInput {
|
|
create: PictureCreateInput
|
|
create: PictureCreateInput
|
|
connect: PictureWhereUniqueInput
|
|
connect: PictureWhereUniqueInput
|
|
@@ -3205,6 +3182,177 @@ type PicturePreviousValues {
|
|
link: String
|
|
link: String
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input PictureScalarWhereInput {
|
|
|
|
+ """Logical AND on all given filters."""
|
|
|
|
+ AND: [PictureScalarWhereInput!]
|
|
|
|
+
|
|
|
|
+ """Logical OR on all given filters."""
|
|
|
|
+ OR: [PictureScalarWhereInput!]
|
|
|
|
+
|
|
|
|
+ """Logical NOT on all given filters combined by AND."""
|
|
|
|
+ NOT: [PictureScalarWhereInput!]
|
|
|
|
+ id: ID
|
|
|
|
+
|
|
|
|
+ """All values that are not equal to given value."""
|
|
|
|
+ id_not: ID
|
|
|
|
+
|
|
|
|
+ """All values that are contained in given list."""
|
|
|
|
+ id_in: [ID!]
|
|
|
|
+
|
|
|
|
+ """All values that are not contained in given list."""
|
|
|
|
+ id_not_in: [ID!]
|
|
|
|
+
|
|
|
|
+ """All values less than the given value."""
|
|
|
|
+ id_lt: ID
|
|
|
|
+
|
|
|
|
+ """All values less than or equal the given value."""
|
|
|
|
+ id_lte: ID
|
|
|
|
+
|
|
|
|
+ """All values greater than the given value."""
|
|
|
|
+ id_gt: ID
|
|
|
|
+
|
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
|
+ id_gte: ID
|
|
|
|
+
|
|
|
|
+ """All values containing the given string."""
|
|
|
|
+ id_contains: ID
|
|
|
|
+
|
|
|
|
+ """All values not containing the given string."""
|
|
|
|
+ id_not_contains: ID
|
|
|
|
+
|
|
|
|
+ """All values starting with the given string."""
|
|
|
|
+ id_starts_with: ID
|
|
|
|
+
|
|
|
|
+ """All values not starting with the given string."""
|
|
|
|
+ id_not_starts_with: ID
|
|
|
|
+
|
|
|
|
+ """All values ending with the given string."""
|
|
|
|
+ id_ends_with: ID
|
|
|
|
+
|
|
|
|
+ """All values not ending with the given string."""
|
|
|
|
+ id_not_ends_with: ID
|
|
|
|
+ title: String
|
|
|
|
+
|
|
|
|
+ """All values that are not equal to given value."""
|
|
|
|
+ title_not: String
|
|
|
|
+
|
|
|
|
+ """All values that are contained in given list."""
|
|
|
|
+ title_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values that are not contained in given list."""
|
|
|
|
+ title_not_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values less than the given value."""
|
|
|
|
+ title_lt: String
|
|
|
|
+
|
|
|
|
+ """All values less than or equal the given value."""
|
|
|
|
+ title_lte: String
|
|
|
|
+
|
|
|
|
+ """All values greater than the given value."""
|
|
|
|
+ title_gt: String
|
|
|
|
+
|
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
|
+ title_gte: String
|
|
|
|
+
|
|
|
|
+ """All values containing the given string."""
|
|
|
|
+ title_contains: String
|
|
|
|
+
|
|
|
|
+ """All values not containing the given string."""
|
|
|
|
+ title_not_contains: String
|
|
|
|
+
|
|
|
|
+ """All values starting with the given string."""
|
|
|
|
+ title_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values not starting with the given string."""
|
|
|
|
+ title_not_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values ending with the given string."""
|
|
|
|
+ title_ends_with: String
|
|
|
|
+
|
|
|
|
+ """All values not ending with the given string."""
|
|
|
|
+ title_not_ends_with: String
|
|
|
|
+ description: String
|
|
|
|
+
|
|
|
|
+ """All values that are not equal to given value."""
|
|
|
|
+ description_not: String
|
|
|
|
+
|
|
|
|
+ """All values that are contained in given list."""
|
|
|
|
+ description_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values that are not contained in given list."""
|
|
|
|
+ description_not_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values less than the given value."""
|
|
|
|
+ description_lt: String
|
|
|
|
+
|
|
|
|
+ """All values less than or equal the given value."""
|
|
|
|
+ description_lte: String
|
|
|
|
+
|
|
|
|
+ """All values greater than the given value."""
|
|
|
|
+ description_gt: String
|
|
|
|
+
|
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
|
+ description_gte: String
|
|
|
|
+
|
|
|
|
+ """All values containing the given string."""
|
|
|
|
+ description_contains: String
|
|
|
|
+
|
|
|
|
+ """All values not containing the given string."""
|
|
|
|
+ description_not_contains: String
|
|
|
|
+
|
|
|
|
+ """All values starting with the given string."""
|
|
|
|
+ description_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values not starting with the given string."""
|
|
|
|
+ description_not_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values ending with the given string."""
|
|
|
|
+ description_ends_with: String
|
|
|
|
+
|
|
|
|
+ """All values not ending with the given string."""
|
|
|
|
+ description_not_ends_with: String
|
|
|
|
+ link: String
|
|
|
|
+
|
|
|
|
+ """All values that are not equal to given value."""
|
|
|
|
+ link_not: String
|
|
|
|
+
|
|
|
|
+ """All values that are contained in given list."""
|
|
|
|
+ link_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values that are not contained in given list."""
|
|
|
|
+ link_not_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values less than the given value."""
|
|
|
|
+ link_lt: String
|
|
|
|
+
|
|
|
|
+ """All values less than or equal the given value."""
|
|
|
|
+ link_lte: String
|
|
|
|
+
|
|
|
|
+ """All values greater than the given value."""
|
|
|
|
+ link_gt: String
|
|
|
|
+
|
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
|
+ link_gte: String
|
|
|
|
+
|
|
|
|
+ """All values containing the given string."""
|
|
|
|
+ link_contains: String
|
|
|
|
+
|
|
|
|
+ """All values not containing the given string."""
|
|
|
|
+ link_not_contains: String
|
|
|
|
+
|
|
|
|
+ """All values starting with the given string."""
|
|
|
|
+ link_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values not starting with the given string."""
|
|
|
|
+ link_not_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values ending with the given string."""
|
|
|
|
+ link_ends_with: String
|
|
|
|
+
|
|
|
|
+ """All values not ending with the given string."""
|
|
|
|
+ link_not_ends_with: String
|
|
|
|
+}
|
|
|
|
+
|
|
type PictureSubscriptionPayload {
|
|
type PictureSubscriptionPayload {
|
|
mutation: MutationType!
|
|
mutation: MutationType!
|
|
node: Picture
|
|
node: Picture
|
|
@@ -3256,12 +3404,35 @@ input PictureUpdateInput {
|
|
file: FileUpdateOneInput
|
|
file: FileUpdateOneInput
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input PictureUpdateManyDataInput {
|
|
|
|
+ title: String
|
|
|
|
+ description: String
|
|
|
|
+ link: String
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input PictureUpdateManyInput {
|
|
|
|
+ create: [PictureCreateInput!]
|
|
|
|
+ connect: [PictureWhereUniqueInput!]
|
|
|
|
+ set: [PictureWhereUniqueInput!]
|
|
|
|
+ disconnect: [PictureWhereUniqueInput!]
|
|
|
|
+ delete: [PictureWhereUniqueInput!]
|
|
|
|
+ update: [PictureUpdateWithWhereUniqueNestedInput!]
|
|
|
|
+ updateMany: [PictureUpdateManyWithWhereNestedInput!]
|
|
|
|
+ deleteMany: [PictureScalarWhereInput!]
|
|
|
|
+ upsert: [PictureUpsertWithWhereUniqueNestedInput!]
|
|
|
|
+}
|
|
|
|
+
|
|
input PictureUpdateManyMutationInput {
|
|
input PictureUpdateManyMutationInput {
|
|
title: String
|
|
title: String
|
|
description: String
|
|
description: String
|
|
link: String
|
|
link: String
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input PictureUpdateManyWithWhereNestedInput {
|
|
|
|
+ where: PictureScalarWhereInput!
|
|
|
|
+ data: PictureUpdateManyDataInput!
|
|
|
|
+}
|
|
|
|
+
|
|
input PictureUpdateOneInput {
|
|
input PictureUpdateOneInput {
|
|
create: PictureCreateInput
|
|
create: PictureCreateInput
|
|
connect: PictureWhereUniqueInput
|
|
connect: PictureWhereUniqueInput
|
|
@@ -3271,11 +3442,22 @@ input PictureUpdateOneInput {
|
|
upsert: PictureUpsertNestedInput
|
|
upsert: PictureUpsertNestedInput
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input PictureUpdateWithWhereUniqueNestedInput {
|
|
|
|
+ where: PictureWhereUniqueInput!
|
|
|
|
+ data: PictureUpdateDataInput!
|
|
|
|
+}
|
|
|
|
+
|
|
input PictureUpsertNestedInput {
|
|
input PictureUpsertNestedInput {
|
|
update: PictureUpdateDataInput!
|
|
update: PictureUpdateDataInput!
|
|
create: PictureCreateInput!
|
|
create: PictureCreateInput!
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input PictureUpsertWithWhereUniqueNestedInput {
|
|
|
|
+ where: PictureWhereUniqueInput!
|
|
|
|
+ update: PictureUpdateDataInput!
|
|
|
|
+ create: PictureCreateInput!
|
|
|
|
+}
|
|
|
|
+
|
|
input PictureWhereInput {
|
|
input PictureWhereInput {
|
|
"""Logical AND on all given filters."""
|
|
"""Logical AND on all given filters."""
|
|
AND: [PictureWhereInput!]
|
|
AND: [PictureWhereInput!]
|
|
@@ -3456,7 +3638,6 @@ 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]!
|
|
blockInstances(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BlockInstance]!
|
|
- videos(where: VideoWhereInput, orderBy: VideoOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Video]!
|
|
|
|
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]!
|
|
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]!
|
|
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]!
|
|
@@ -3464,13 +3645,13 @@ type Query {
|
|
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]!
|
|
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]!
|
|
files(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File]!
|
|
files(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [File]!
|
|
- pictures(where: PictureWhereInput, orderBy: PictureOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Picture]!
|
|
|
|
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]!
|
|
|
|
+ pictures(where: PictureWhereInput, orderBy: PictureOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Picture]!
|
|
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]!
|
|
|
|
+ videos(where: VideoWhereInput, orderBy: VideoOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Video]!
|
|
training(where: TrainingWhereUniqueInput!): Training
|
|
training(where: TrainingWhereUniqueInput!): Training
|
|
block(where: BlockWhereUniqueInput!): Block
|
|
block(where: BlockWhereUniqueInput!): Block
|
|
blockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
blockInstance(where: BlockInstanceWhereUniqueInput!): BlockInstance
|
|
- video(where: VideoWhereUniqueInput!): Video
|
|
|
|
exercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
exercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
exerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
exerciseInstance(where: ExerciseInstanceWhereUniqueInput!): ExerciseInstance
|
|
comment(where: CommentWhereUniqueInput!): Comment
|
|
comment(where: CommentWhereUniqueInput!): Comment
|
|
@@ -3478,13 +3659,13 @@ type Query {
|
|
user(where: UserWhereUniqueInput!): User
|
|
user(where: UserWhereUniqueInput!): User
|
|
track(where: TrackWhereUniqueInput!): Track
|
|
track(where: TrackWhereUniqueInput!): Track
|
|
file(where: FileWhereUniqueInput!): File
|
|
file(where: FileWhereUniqueInput!): File
|
|
- picture(where: PictureWhereUniqueInput!): Picture
|
|
|
|
format(where: FormatWhereUniqueInput!): Format
|
|
format(where: FormatWhereUniqueInput!): Format
|
|
|
|
+ picture(where: PictureWhereUniqueInput!): Picture
|
|
rating(where: RatingWhereUniqueInput!): Rating
|
|
rating(where: RatingWhereUniqueInput!): Rating
|
|
|
|
+ video(where: VideoWhereUniqueInput!): Video
|
|
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!
|
|
blockInstancesConnection(where: BlockInstanceWhereInput, orderBy: BlockInstanceOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): BlockInstanceConnection!
|
|
- videosConnection(where: VideoWhereInput, orderBy: VideoOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): VideoConnection!
|
|
|
|
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!
|
|
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!
|
|
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!
|
|
@@ -3492,9 +3673,10 @@ type Query {
|
|
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!
|
|
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!
|
|
filesConnection(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): FileConnection!
|
|
filesConnection(where: FileWhereInput, orderBy: FileOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): FileConnection!
|
|
- picturesConnection(where: PictureWhereInput, orderBy: PictureOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): PictureConnection!
|
|
|
|
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!
|
|
|
|
+ picturesConnection(where: PictureWhereInput, orderBy: PictureOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): PictureConnection!
|
|
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!
|
|
|
|
+ videosConnection(where: VideoWhereInput, orderBy: VideoOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): VideoConnection!
|
|
|
|
|
|
"""Fetches an object given its ID"""
|
|
"""Fetches an object given its ID"""
|
|
node(
|
|
node(
|
|
@@ -3965,7 +4147,6 @@ type Subscription {
|
|
training(where: TrainingSubscriptionWhereInput): TrainingSubscriptionPayload
|
|
training(where: TrainingSubscriptionWhereInput): TrainingSubscriptionPayload
|
|
block(where: BlockSubscriptionWhereInput): BlockSubscriptionPayload
|
|
block(where: BlockSubscriptionWhereInput): BlockSubscriptionPayload
|
|
blockInstance(where: BlockInstanceSubscriptionWhereInput): BlockInstanceSubscriptionPayload
|
|
blockInstance(where: BlockInstanceSubscriptionWhereInput): BlockInstanceSubscriptionPayload
|
|
- video(where: VideoSubscriptionWhereInput): VideoSubscriptionPayload
|
|
|
|
exercise(where: ExerciseSubscriptionWhereInput): ExerciseSubscriptionPayload
|
|
exercise(where: ExerciseSubscriptionWhereInput): ExerciseSubscriptionPayload
|
|
exerciseInstance(where: ExerciseInstanceSubscriptionWhereInput): ExerciseInstanceSubscriptionPayload
|
|
exerciseInstance(where: ExerciseInstanceSubscriptionWhereInput): ExerciseInstanceSubscriptionPayload
|
|
comment(where: CommentSubscriptionWhereInput): CommentSubscriptionPayload
|
|
comment(where: CommentSubscriptionWhereInput): CommentSubscriptionPayload
|
|
@@ -3973,9 +4154,10 @@ type Subscription {
|
|
user(where: UserSubscriptionWhereInput): UserSubscriptionPayload
|
|
user(where: UserSubscriptionWhereInput): UserSubscriptionPayload
|
|
track(where: TrackSubscriptionWhereInput): TrackSubscriptionPayload
|
|
track(where: TrackSubscriptionWhereInput): TrackSubscriptionPayload
|
|
file(where: FileSubscriptionWhereInput): FileSubscriptionPayload
|
|
file(where: FileSubscriptionWhereInput): FileSubscriptionPayload
|
|
- picture(where: PictureSubscriptionWhereInput): PictureSubscriptionPayload
|
|
|
|
format(where: FormatSubscriptionWhereInput): FormatSubscriptionPayload
|
|
format(where: FormatSubscriptionWhereInput): FormatSubscriptionPayload
|
|
|
|
+ picture(where: PictureSubscriptionWhereInput): PictureSubscriptionPayload
|
|
rating(where: RatingSubscriptionWhereInput): RatingSubscriptionPayload
|
|
rating(where: RatingSubscriptionWhereInput): RatingSubscriptionPayload
|
|
|
|
+ video(where: VideoSubscriptionWhereInput): VideoSubscriptionPayload
|
|
}
|
|
}
|
|
|
|
|
|
type Track implements Node {
|
|
type Track implements Node {
|
|
@@ -6025,6 +6207,11 @@ input VideoCreateInput {
|
|
file: FileCreateOneInput
|
|
file: FileCreateOneInput
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input VideoCreateManyInput {
|
|
|
|
+ create: [VideoCreateInput!]
|
|
|
|
+ connect: [VideoWhereUniqueInput!]
|
|
|
|
+}
|
|
|
|
+
|
|
"""An edge in a connection."""
|
|
"""An edge in a connection."""
|
|
type VideoEdge {
|
|
type VideoEdge {
|
|
"""The item at the end of the edge."""
|
|
"""The item at the end of the edge."""
|
|
@@ -6055,6 +6242,199 @@ type VideoPreviousValues {
|
|
link: String
|
|
link: String
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input VideoScalarWhereInput {
|
|
|
|
+ """Logical AND on all given filters."""
|
|
|
|
+ AND: [VideoScalarWhereInput!]
|
|
|
|
+
|
|
|
|
+ """Logical OR on all given filters."""
|
|
|
|
+ OR: [VideoScalarWhereInput!]
|
|
|
|
+
|
|
|
|
+ """Logical NOT on all given filters combined by AND."""
|
|
|
|
+ NOT: [VideoScalarWhereInput!]
|
|
|
|
+ id: ID
|
|
|
|
+
|
|
|
|
+ """All values that are not equal to given value."""
|
|
|
|
+ id_not: ID
|
|
|
|
+
|
|
|
|
+ """All values that are contained in given list."""
|
|
|
|
+ id_in: [ID!]
|
|
|
|
+
|
|
|
|
+ """All values that are not contained in given list."""
|
|
|
|
+ id_not_in: [ID!]
|
|
|
|
+
|
|
|
|
+ """All values less than the given value."""
|
|
|
|
+ id_lt: ID
|
|
|
|
+
|
|
|
|
+ """All values less than or equal the given value."""
|
|
|
|
+ id_lte: ID
|
|
|
|
+
|
|
|
|
+ """All values greater than the given value."""
|
|
|
|
+ id_gt: ID
|
|
|
|
+
|
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
|
+ id_gte: ID
|
|
|
|
+
|
|
|
|
+ """All values containing the given string."""
|
|
|
|
+ id_contains: ID
|
|
|
|
+
|
|
|
|
+ """All values not containing the given string."""
|
|
|
|
+ id_not_contains: ID
|
|
|
|
+
|
|
|
|
+ """All values starting with the given string."""
|
|
|
|
+ id_starts_with: ID
|
|
|
|
+
|
|
|
|
+ """All values not starting with the given string."""
|
|
|
|
+ id_not_starts_with: ID
|
|
|
|
+
|
|
|
|
+ """All values ending with the given string."""
|
|
|
|
+ id_ends_with: ID
|
|
|
|
+
|
|
|
|
+ """All values not ending with the given string."""
|
|
|
|
+ id_not_ends_with: ID
|
|
|
|
+ title: String
|
|
|
|
+
|
|
|
|
+ """All values that are not equal to given value."""
|
|
|
|
+ title_not: String
|
|
|
|
+
|
|
|
|
+ """All values that are contained in given list."""
|
|
|
|
+ title_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values that are not contained in given list."""
|
|
|
|
+ title_not_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values less than the given value."""
|
|
|
|
+ title_lt: String
|
|
|
|
+
|
|
|
|
+ """All values less than or equal the given value."""
|
|
|
|
+ title_lte: String
|
|
|
|
+
|
|
|
|
+ """All values greater than the given value."""
|
|
|
|
+ title_gt: String
|
|
|
|
+
|
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
|
+ title_gte: String
|
|
|
|
+
|
|
|
|
+ """All values containing the given string."""
|
|
|
|
+ title_contains: String
|
|
|
|
+
|
|
|
|
+ """All values not containing the given string."""
|
|
|
|
+ title_not_contains: String
|
|
|
|
+
|
|
|
|
+ """All values starting with the given string."""
|
|
|
|
+ title_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values not starting with the given string."""
|
|
|
|
+ title_not_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values ending with the given string."""
|
|
|
|
+ title_ends_with: String
|
|
|
|
+
|
|
|
|
+ """All values not ending with the given string."""
|
|
|
|
+ title_not_ends_with: String
|
|
|
|
+ description: String
|
|
|
|
+
|
|
|
|
+ """All values that are not equal to given value."""
|
|
|
|
+ description_not: String
|
|
|
|
+
|
|
|
|
+ """All values that are contained in given list."""
|
|
|
|
+ description_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values that are not contained in given list."""
|
|
|
|
+ description_not_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values less than the given value."""
|
|
|
|
+ description_lt: String
|
|
|
|
+
|
|
|
|
+ """All values less than or equal the given value."""
|
|
|
|
+ description_lte: String
|
|
|
|
+
|
|
|
|
+ """All values greater than the given value."""
|
|
|
|
+ description_gt: String
|
|
|
|
+
|
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
|
+ description_gte: String
|
|
|
|
+
|
|
|
|
+ """All values containing the given string."""
|
|
|
|
+ description_contains: String
|
|
|
|
+
|
|
|
|
+ """All values not containing the given string."""
|
|
|
|
+ description_not_contains: String
|
|
|
|
+
|
|
|
|
+ """All values starting with the given string."""
|
|
|
|
+ description_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values not starting with the given string."""
|
|
|
|
+ description_not_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values ending with the given string."""
|
|
|
|
+ description_ends_with: String
|
|
|
|
+
|
|
|
|
+ """All values not ending with the given string."""
|
|
|
|
+ description_not_ends_with: String
|
|
|
|
+ duration: Int
|
|
|
|
+
|
|
|
|
+ """All values that are not equal to given value."""
|
|
|
|
+ duration_not: Int
|
|
|
|
+
|
|
|
|
+ """All values that are contained in given list."""
|
|
|
|
+ duration_in: [Int!]
|
|
|
|
+
|
|
|
|
+ """All values that are not contained in given list."""
|
|
|
|
+ duration_not_in: [Int!]
|
|
|
|
+
|
|
|
|
+ """All values less than the given value."""
|
|
|
|
+ duration_lt: Int
|
|
|
|
+
|
|
|
|
+ """All values less than or equal the given value."""
|
|
|
|
+ duration_lte: Int
|
|
|
|
+
|
|
|
|
+ """All values greater than the given value."""
|
|
|
|
+ duration_gt: Int
|
|
|
|
+
|
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
|
+ duration_gte: Int
|
|
|
|
+ link: String
|
|
|
|
+
|
|
|
|
+ """All values that are not equal to given value."""
|
|
|
|
+ link_not: String
|
|
|
|
+
|
|
|
|
+ """All values that are contained in given list."""
|
|
|
|
+ link_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values that are not contained in given list."""
|
|
|
|
+ link_not_in: [String!]
|
|
|
|
+
|
|
|
|
+ """All values less than the given value."""
|
|
|
|
+ link_lt: String
|
|
|
|
+
|
|
|
|
+ """All values less than or equal the given value."""
|
|
|
|
+ link_lte: String
|
|
|
|
+
|
|
|
|
+ """All values greater than the given value."""
|
|
|
|
+ link_gt: String
|
|
|
|
+
|
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
|
+ link_gte: String
|
|
|
|
+
|
|
|
|
+ """All values containing the given string."""
|
|
|
|
+ link_contains: String
|
|
|
|
+
|
|
|
|
+ """All values not containing the given string."""
|
|
|
|
+ link_not_contains: String
|
|
|
|
+
|
|
|
|
+ """All values starting with the given string."""
|
|
|
|
+ link_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values not starting with the given string."""
|
|
|
|
+ link_not_starts_with: String
|
|
|
|
+
|
|
|
|
+ """All values ending with the given string."""
|
|
|
|
+ link_ends_with: String
|
|
|
|
+
|
|
|
|
+ """All values not ending with the given string."""
|
|
|
|
+ link_not_ends_with: String
|
|
|
|
+}
|
|
|
|
+
|
|
type VideoSubscriptionPayload {
|
|
type VideoSubscriptionPayload {
|
|
mutation: MutationType!
|
|
mutation: MutationType!
|
|
node: Video
|
|
node: Video
|
|
@@ -6092,6 +6472,14 @@ input VideoSubscriptionWhereInput {
|
|
node: VideoWhereInput
|
|
node: VideoWhereInput
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input VideoUpdateDataInput {
|
|
|
|
+ title: String
|
|
|
|
+ description: String
|
|
|
|
+ duration: Int
|
|
|
|
+ link: String
|
|
|
|
+ file: FileUpdateOneInput
|
|
|
|
+}
|
|
|
|
+
|
|
input VideoUpdateInput {
|
|
input VideoUpdateInput {
|
|
title: String
|
|
title: String
|
|
description: String
|
|
description: String
|
|
@@ -6100,6 +6488,25 @@ input VideoUpdateInput {
|
|
file: FileUpdateOneInput
|
|
file: FileUpdateOneInput
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input VideoUpdateManyDataInput {
|
|
|
|
+ title: String
|
|
|
|
+ description: String
|
|
|
|
+ duration: Int
|
|
|
|
+ link: String
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input VideoUpdateManyInput {
|
|
|
|
+ create: [VideoCreateInput!]
|
|
|
|
+ connect: [VideoWhereUniqueInput!]
|
|
|
|
+ set: [VideoWhereUniqueInput!]
|
|
|
|
+ disconnect: [VideoWhereUniqueInput!]
|
|
|
|
+ delete: [VideoWhereUniqueInput!]
|
|
|
|
+ update: [VideoUpdateWithWhereUniqueNestedInput!]
|
|
|
|
+ updateMany: [VideoUpdateManyWithWhereNestedInput!]
|
|
|
|
+ deleteMany: [VideoScalarWhereInput!]
|
|
|
|
+ upsert: [VideoUpsertWithWhereUniqueNestedInput!]
|
|
|
|
+}
|
|
|
|
+
|
|
input VideoUpdateManyMutationInput {
|
|
input VideoUpdateManyMutationInput {
|
|
title: String
|
|
title: String
|
|
description: String
|
|
description: String
|
|
@@ -6107,6 +6514,22 @@ input VideoUpdateManyMutationInput {
|
|
link: String
|
|
link: String
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+input VideoUpdateManyWithWhereNestedInput {
|
|
|
|
+ where: VideoScalarWhereInput!
|
|
|
|
+ data: VideoUpdateManyDataInput!
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input VideoUpdateWithWhereUniqueNestedInput {
|
|
|
|
+ where: VideoWhereUniqueInput!
|
|
|
|
+ data: VideoUpdateDataInput!
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+input VideoUpsertWithWhereUniqueNestedInput {
|
|
|
|
+ where: VideoWhereUniqueInput!
|
|
|
|
+ update: VideoUpdateDataInput!
|
|
|
|
+ create: VideoCreateInput!
|
|
|
|
+}
|
|
|
|
+
|
|
input VideoWhereInput {
|
|
input VideoWhereInput {
|
|
"""Logical AND on all given filters."""
|
|
"""Logical AND on all given filters."""
|
|
AND: [VideoWhereInput!]
|
|
AND: [VideoWhereInput!]
|