|
@@ -1,5 +1,9 @@
|
|
|
# source: http://prisma:4466
|
|
|
-# timestamp: Thu Nov 07 2019 16:25:57 GMT+0000 (Coordinated Universal Time)
|
|
|
+# timestamp: Tue Nov 12 2019 13:41:15 GMT+0000 (Coordinated Universal Time)
|
|
|
+
|
|
|
+type AggregateBaseExercise {
|
|
|
+ count: Int!
|
|
|
+}
|
|
|
|
|
|
type AggregateBlock {
|
|
|
count: Int!
|
|
@@ -9,7 +13,7 @@ type AggregateComment {
|
|
|
count: Int!
|
|
|
}
|
|
|
|
|
|
-type AggregateExcersise {
|
|
|
+type AggregateExercise {
|
|
|
count: Int!
|
|
|
}
|
|
|
|
|
@@ -37,6 +41,219 @@ type AggregateUser {
|
|
|
count: Int!
|
|
|
}
|
|
|
|
|
|
+type BaseExercise implements Node {
|
|
|
+ id: ID!
|
|
|
+ name: String!
|
|
|
+ variations(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Exercise!]
|
|
|
+}
|
|
|
+
|
|
|
+"""A connection to a list of items."""
|
|
|
+type BaseExerciseConnection {
|
|
|
+ """Information to aid in pagination."""
|
|
|
+ pageInfo: PageInfo!
|
|
|
+
|
|
|
+ """A list of edges."""
|
|
|
+ edges: [BaseExerciseEdge]!
|
|
|
+ aggregate: AggregateBaseExercise!
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseCreateInput {
|
|
|
+ id: ID
|
|
|
+ name: String!
|
|
|
+ variations: ExerciseCreateManyWithoutBaseExerciseInput
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseCreateOneWithoutVariationsInput {
|
|
|
+ create: BaseExerciseCreateWithoutVariationsInput
|
|
|
+ connect: BaseExerciseWhereUniqueInput
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseCreateWithoutVariationsInput {
|
|
|
+ id: ID
|
|
|
+ name: String!
|
|
|
+}
|
|
|
+
|
|
|
+"""An edge in a connection."""
|
|
|
+type BaseExerciseEdge {
|
|
|
+ """The item at the end of the edge."""
|
|
|
+ node: BaseExercise!
|
|
|
+
|
|
|
+ """A cursor for use in pagination."""
|
|
|
+ cursor: String!
|
|
|
+}
|
|
|
+
|
|
|
+enum BaseExerciseOrderByInput {
|
|
|
+ id_ASC
|
|
|
+ id_DESC
|
|
|
+ name_ASC
|
|
|
+ name_DESC
|
|
|
+}
|
|
|
+
|
|
|
+type BaseExercisePreviousValues {
|
|
|
+ id: ID!
|
|
|
+ name: String!
|
|
|
+}
|
|
|
+
|
|
|
+type BaseExerciseSubscriptionPayload {
|
|
|
+ mutation: MutationType!
|
|
|
+ node: BaseExercise
|
|
|
+ updatedFields: [String!]
|
|
|
+ previousValues: BaseExercisePreviousValues
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseSubscriptionWhereInput {
|
|
|
+ """Logical AND on all given filters."""
|
|
|
+ AND: [BaseExerciseSubscriptionWhereInput!]
|
|
|
+
|
|
|
+ """Logical OR on all given filters."""
|
|
|
+ OR: [BaseExerciseSubscriptionWhereInput!]
|
|
|
+
|
|
|
+ """Logical NOT on all given filters combined by AND."""
|
|
|
+ NOT: [BaseExerciseSubscriptionWhereInput!]
|
|
|
+
|
|
|
+ """The subscription event gets dispatched when it's listed in mutation_in"""
|
|
|
+ mutation_in: [MutationType!]
|
|
|
+
|
|
|
+ """
|
|
|
+ The subscription event gets only dispatched when one of the updated fields names is included in this list
|
|
|
+ """
|
|
|
+ updatedFields_contains: String
|
|
|
+
|
|
|
+ """
|
|
|
+ The subscription event gets only dispatched when all of the field names included in this list have been updated
|
|
|
+ """
|
|
|
+ updatedFields_contains_every: [String!]
|
|
|
+
|
|
|
+ """
|
|
|
+ The subscription event gets only dispatched when some of the field names included in this list have been updated
|
|
|
+ """
|
|
|
+ updatedFields_contains_some: [String!]
|
|
|
+ node: BaseExerciseWhereInput
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseUpdateInput {
|
|
|
+ name: String
|
|
|
+ variations: ExerciseUpdateManyWithoutBaseExerciseInput
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseUpdateManyMutationInput {
|
|
|
+ name: String
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseUpdateOneRequiredWithoutVariationsInput {
|
|
|
+ create: BaseExerciseCreateWithoutVariationsInput
|
|
|
+ connect: BaseExerciseWhereUniqueInput
|
|
|
+ update: BaseExerciseUpdateWithoutVariationsDataInput
|
|
|
+ upsert: BaseExerciseUpsertWithoutVariationsInput
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseUpdateWithoutVariationsDataInput {
|
|
|
+ name: String
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseUpsertWithoutVariationsInput {
|
|
|
+ update: BaseExerciseUpdateWithoutVariationsDataInput!
|
|
|
+ create: BaseExerciseCreateWithoutVariationsInput!
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseWhereInput {
|
|
|
+ """Logical AND on all given filters."""
|
|
|
+ AND: [BaseExerciseWhereInput!]
|
|
|
+
|
|
|
+ """Logical OR on all given filters."""
|
|
|
+ OR: [BaseExerciseWhereInput!]
|
|
|
+
|
|
|
+ """Logical NOT on all given filters combined by AND."""
|
|
|
+ NOT: [BaseExerciseWhereInput!]
|
|
|
+ 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
|
|
|
+ name: String
|
|
|
+
|
|
|
+ """All values that are not equal to given value."""
|
|
|
+ name_not: String
|
|
|
+
|
|
|
+ """All values that are contained in given list."""
|
|
|
+ name_in: [String!]
|
|
|
+
|
|
|
+ """All values that are not contained in given list."""
|
|
|
+ name_not_in: [String!]
|
|
|
+
|
|
|
+ """All values less than the given value."""
|
|
|
+ name_lt: String
|
|
|
+
|
|
|
+ """All values less than or equal the given value."""
|
|
|
+ name_lte: String
|
|
|
+
|
|
|
+ """All values greater than the given value."""
|
|
|
+ name_gt: String
|
|
|
+
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
+ name_gte: String
|
|
|
+
|
|
|
+ """All values containing the given string."""
|
|
|
+ name_contains: String
|
|
|
+
|
|
|
+ """All values not containing the given string."""
|
|
|
+ name_not_contains: String
|
|
|
+
|
|
|
+ """All values starting with the given string."""
|
|
|
+ name_starts_with: String
|
|
|
+
|
|
|
+ """All values not starting with the given string."""
|
|
|
+ name_not_starts_with: String
|
|
|
+
|
|
|
+ """All values ending with the given string."""
|
|
|
+ name_ends_with: String
|
|
|
+
|
|
|
+ """All values not ending with the given string."""
|
|
|
+ name_not_ends_with: String
|
|
|
+ variations_every: ExerciseWhereInput
|
|
|
+ variations_some: ExerciseWhereInput
|
|
|
+ variations_none: ExerciseWhereInput
|
|
|
+}
|
|
|
+
|
|
|
+input BaseExerciseWhereUniqueInput {
|
|
|
+ id: ID
|
|
|
+}
|
|
|
+
|
|
|
type BatchPayload {
|
|
|
"""The number of nodes that have been affected by the Batch operation."""
|
|
|
count: Long!
|
|
@@ -50,7 +267,8 @@ type Block implements Node {
|
|
|
variation: String
|
|
|
format: Format
|
|
|
tracks(where: TrackWhereInput, orderBy: TrackOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Track!]
|
|
|
- excersises(where: ExcersiseWhereInput, orderBy: ExcersiseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Excersise!]
|
|
|
+ exercises(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Exercise!]
|
|
|
+ description: String!
|
|
|
}
|
|
|
|
|
|
"""A connection to a list of items."""
|
|
@@ -69,9 +287,10 @@ input BlockCreateInput {
|
|
|
title: String!
|
|
|
duration: Int!
|
|
|
variation: String
|
|
|
+ description: String!
|
|
|
format: FormatCreateOneInput
|
|
|
tracks: TrackCreateManyInput
|
|
|
- excersises: ExcersiseCreateManyInput
|
|
|
+ exercises: ExerciseCreateManyInput
|
|
|
}
|
|
|
|
|
|
input BlockCreateManyInput {
|
|
@@ -99,6 +318,8 @@ enum BlockOrderByInput {
|
|
|
duration_DESC
|
|
|
variation_ASC
|
|
|
variation_DESC
|
|
|
+ description_ASC
|
|
|
+ description_DESC
|
|
|
}
|
|
|
|
|
|
type BlockPreviousValues {
|
|
@@ -107,6 +328,7 @@ type BlockPreviousValues {
|
|
|
title: String!
|
|
|
duration: Int!
|
|
|
variation: String
|
|
|
+ description: String!
|
|
|
}
|
|
|
|
|
|
input BlockScalarWhereInput {
|
|
@@ -282,6 +504,46 @@ input BlockScalarWhereInput {
|
|
|
|
|
|
"""All values not ending with the given string."""
|
|
|
variation_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
|
|
|
}
|
|
|
|
|
|
type BlockSubscriptionPayload {
|
|
@@ -326,9 +588,10 @@ input BlockUpdateDataInput {
|
|
|
title: String
|
|
|
duration: Int
|
|
|
variation: String
|
|
|
+ description: String
|
|
|
format: FormatUpdateOneInput
|
|
|
tracks: TrackUpdateManyInput
|
|
|
- excersises: ExcersiseUpdateManyInput
|
|
|
+ exercises: ExerciseUpdateManyInput
|
|
|
}
|
|
|
|
|
|
input BlockUpdateInput {
|
|
@@ -336,9 +599,10 @@ input BlockUpdateInput {
|
|
|
title: String
|
|
|
duration: Int
|
|
|
variation: String
|
|
|
+ description: String
|
|
|
format: FormatUpdateOneInput
|
|
|
tracks: TrackUpdateManyInput
|
|
|
- excersises: ExcersiseUpdateManyInput
|
|
|
+ exercises: ExerciseUpdateManyInput
|
|
|
}
|
|
|
|
|
|
input BlockUpdateManyDataInput {
|
|
@@ -346,6 +610,7 @@ input BlockUpdateManyDataInput {
|
|
|
title: String
|
|
|
duration: Int
|
|
|
variation: String
|
|
|
+ description: String
|
|
|
}
|
|
|
|
|
|
input BlockUpdateManyInput {
|
|
@@ -365,6 +630,7 @@ input BlockUpdateManyMutationInput {
|
|
|
title: String
|
|
|
duration: Int
|
|
|
variation: String
|
|
|
+ description: String
|
|
|
}
|
|
|
|
|
|
input BlockUpdateManyWithWhereNestedInput {
|
|
@@ -556,13 +822,53 @@ input BlockWhereInput {
|
|
|
|
|
|
"""All values not ending with the given string."""
|
|
|
variation_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
|
|
|
format: FormatWhereInput
|
|
|
tracks_every: TrackWhereInput
|
|
|
tracks_some: TrackWhereInput
|
|
|
tracks_none: TrackWhereInput
|
|
|
- excersises_every: ExcersiseWhereInput
|
|
|
- excersises_some: ExcersiseWhereInput
|
|
|
- excersises_none: ExcersiseWhereInput
|
|
|
+ exercises_every: ExerciseWhereInput
|
|
|
+ exercises_some: ExerciseWhereInput
|
|
|
+ exercises_none: ExerciseWhereInput
|
|
|
}
|
|
|
|
|
|
input BlockWhereUniqueInput {
|
|
@@ -941,51 +1247,66 @@ input CommentWhereUniqueInput {
|
|
|
|
|
|
scalar DateTime
|
|
|
|
|
|
-type Excersise implements Node {
|
|
|
+type Exercise implements Node {
|
|
|
id: ID!
|
|
|
name: String!
|
|
|
description: String!
|
|
|
video: String!
|
|
|
targets: [String!]!
|
|
|
+ baseExercise: BaseExercise!
|
|
|
}
|
|
|
|
|
|
"""A connection to a list of items."""
|
|
|
-type ExcersiseConnection {
|
|
|
+type ExerciseConnection {
|
|
|
"""Information to aid in pagination."""
|
|
|
pageInfo: PageInfo!
|
|
|
|
|
|
"""A list of edges."""
|
|
|
- edges: [ExcersiseEdge]!
|
|
|
- aggregate: AggregateExcersise!
|
|
|
+ edges: [ExerciseEdge]!
|
|
|
+ aggregate: AggregateExercise!
|
|
|
}
|
|
|
|
|
|
-input ExcersiseCreateInput {
|
|
|
+input ExerciseCreateInput {
|
|
|
id: ID
|
|
|
name: String!
|
|
|
description: String!
|
|
|
video: String!
|
|
|
- targets: ExcersiseCreatetargetsInput
|
|
|
+ targets: ExerciseCreatetargetsInput
|
|
|
+ baseExercise: BaseExerciseCreateOneWithoutVariationsInput!
|
|
|
+}
|
|
|
+
|
|
|
+input ExerciseCreateManyInput {
|
|
|
+ create: [ExerciseCreateInput!]
|
|
|
+ connect: [ExerciseWhereUniqueInput!]
|
|
|
}
|
|
|
|
|
|
-input ExcersiseCreateManyInput {
|
|
|
- create: [ExcersiseCreateInput!]
|
|
|
- connect: [ExcersiseWhereUniqueInput!]
|
|
|
+input ExerciseCreateManyWithoutBaseExerciseInput {
|
|
|
+ create: [ExerciseCreateWithoutBaseExerciseInput!]
|
|
|
+ connect: [ExerciseWhereUniqueInput!]
|
|
|
}
|
|
|
|
|
|
-input ExcersiseCreatetargetsInput {
|
|
|
+input ExerciseCreatetargetsInput {
|
|
|
set: [String!]
|
|
|
}
|
|
|
|
|
|
+input ExerciseCreateWithoutBaseExerciseInput {
|
|
|
+ id: ID
|
|
|
+ name: String!
|
|
|
+ description: String!
|
|
|
+ video: String!
|
|
|
+ targets: ExerciseCreatetargetsInput
|
|
|
+}
|
|
|
+
|
|
|
"""An edge in a connection."""
|
|
|
-type ExcersiseEdge {
|
|
|
+type ExerciseEdge {
|
|
|
"""The item at the end of the edge."""
|
|
|
- node: Excersise!
|
|
|
+ node: Exercise!
|
|
|
|
|
|
"""A cursor for use in pagination."""
|
|
|
cursor: String!
|
|
|
}
|
|
|
|
|
|
-enum ExcersiseOrderByInput {
|
|
|
+enum ExerciseOrderByInput {
|
|
|
id_ASC
|
|
|
id_DESC
|
|
|
name_ASC
|
|
@@ -996,7 +1317,7 @@ enum ExcersiseOrderByInput {
|
|
|
video_DESC
|
|
|
}
|
|
|
|
|
|
-type ExcersisePreviousValues {
|
|
|
+type ExercisePreviousValues {
|
|
|
id: ID!
|
|
|
name: String!
|
|
|
description: String!
|
|
@@ -1004,15 +1325,15 @@ type ExcersisePreviousValues {
|
|
|
targets: [String!]!
|
|
|
}
|
|
|
|
|
|
-input ExcersiseScalarWhereInput {
|
|
|
+input ExerciseScalarWhereInput {
|
|
|
"""Logical AND on all given filters."""
|
|
|
- AND: [ExcersiseScalarWhereInput!]
|
|
|
+ AND: [ExerciseScalarWhereInput!]
|
|
|
|
|
|
"""Logical OR on all given filters."""
|
|
|
- OR: [ExcersiseScalarWhereInput!]
|
|
|
+ OR: [ExerciseScalarWhereInput!]
|
|
|
|
|
|
"""Logical NOT on all given filters combined by AND."""
|
|
|
- NOT: [ExcersiseScalarWhereInput!]
|
|
|
+ NOT: [ExerciseScalarWhereInput!]
|
|
|
id: ID
|
|
|
|
|
|
"""All values that are not equal to given value."""
|
|
@@ -1175,22 +1496,22 @@ input ExcersiseScalarWhereInput {
|
|
|
video_not_ends_with: String
|
|
|
}
|
|
|
|
|
|
-type ExcersiseSubscriptionPayload {
|
|
|
+type ExerciseSubscriptionPayload {
|
|
|
mutation: MutationType!
|
|
|
- node: Excersise
|
|
|
+ node: Exercise
|
|
|
updatedFields: [String!]
|
|
|
- previousValues: ExcersisePreviousValues
|
|
|
+ previousValues: ExercisePreviousValues
|
|
|
}
|
|
|
|
|
|
-input ExcersiseSubscriptionWhereInput {
|
|
|
+input ExerciseSubscriptionWhereInput {
|
|
|
"""Logical AND on all given filters."""
|
|
|
- AND: [ExcersiseSubscriptionWhereInput!]
|
|
|
+ AND: [ExerciseSubscriptionWhereInput!]
|
|
|
|
|
|
"""Logical OR on all given filters."""
|
|
|
- OR: [ExcersiseSubscriptionWhereInput!]
|
|
|
+ OR: [ExerciseSubscriptionWhereInput!]
|
|
|
|
|
|
"""Logical NOT on all given filters combined by AND."""
|
|
|
- NOT: [ExcersiseSubscriptionWhereInput!]
|
|
|
+ NOT: [ExerciseSubscriptionWhereInput!]
|
|
|
|
|
|
"""The subscription event gets dispatched when it's listed in mutation_in"""
|
|
|
mutation_in: [MutationType!]
|
|
@@ -1209,78 +1530,110 @@ input ExcersiseSubscriptionWhereInput {
|
|
|
The subscription event gets only dispatched when some of the field names included in this list have been updated
|
|
|
"""
|
|
|
updatedFields_contains_some: [String!]
|
|
|
- node: ExcersiseWhereInput
|
|
|
+ node: ExerciseWhereInput
|
|
|
}
|
|
|
|
|
|
-input ExcersiseUpdateDataInput {
|
|
|
+input ExerciseUpdateDataInput {
|
|
|
name: String
|
|
|
description: String
|
|
|
video: String
|
|
|
- targets: ExcersiseUpdatetargetsInput
|
|
|
+ targets: ExerciseUpdatetargetsInput
|
|
|
+ baseExercise: BaseExerciseUpdateOneRequiredWithoutVariationsInput
|
|
|
}
|
|
|
|
|
|
-input ExcersiseUpdateInput {
|
|
|
+input ExerciseUpdateInput {
|
|
|
name: String
|
|
|
description: String
|
|
|
video: String
|
|
|
- targets: ExcersiseUpdatetargetsInput
|
|
|
+ targets: ExerciseUpdatetargetsInput
|
|
|
+ baseExercise: BaseExerciseUpdateOneRequiredWithoutVariationsInput
|
|
|
}
|
|
|
|
|
|
-input ExcersiseUpdateManyDataInput {
|
|
|
+input ExerciseUpdateManyDataInput {
|
|
|
name: String
|
|
|
description: String
|
|
|
video: String
|
|
|
- targets: ExcersiseUpdatetargetsInput
|
|
|
+ targets: ExerciseUpdatetargetsInput
|
|
|
}
|
|
|
|
|
|
-input ExcersiseUpdateManyInput {
|
|
|
- create: [ExcersiseCreateInput!]
|
|
|
- connect: [ExcersiseWhereUniqueInput!]
|
|
|
- set: [ExcersiseWhereUniqueInput!]
|
|
|
- disconnect: [ExcersiseWhereUniqueInput!]
|
|
|
- delete: [ExcersiseWhereUniqueInput!]
|
|
|
- update: [ExcersiseUpdateWithWhereUniqueNestedInput!]
|
|
|
- updateMany: [ExcersiseUpdateManyWithWhereNestedInput!]
|
|
|
- deleteMany: [ExcersiseScalarWhereInput!]
|
|
|
- upsert: [ExcersiseUpsertWithWhereUniqueNestedInput!]
|
|
|
+input ExerciseUpdateManyInput {
|
|
|
+ create: [ExerciseCreateInput!]
|
|
|
+ connect: [ExerciseWhereUniqueInput!]
|
|
|
+ set: [ExerciseWhereUniqueInput!]
|
|
|
+ disconnect: [ExerciseWhereUniqueInput!]
|
|
|
+ delete: [ExerciseWhereUniqueInput!]
|
|
|
+ update: [ExerciseUpdateWithWhereUniqueNestedInput!]
|
|
|
+ updateMany: [ExerciseUpdateManyWithWhereNestedInput!]
|
|
|
+ deleteMany: [ExerciseScalarWhereInput!]
|
|
|
+ upsert: [ExerciseUpsertWithWhereUniqueNestedInput!]
|
|
|
}
|
|
|
|
|
|
-input ExcersiseUpdateManyMutationInput {
|
|
|
+input ExerciseUpdateManyMutationInput {
|
|
|
name: String
|
|
|
description: String
|
|
|
video: String
|
|
|
- targets: ExcersiseUpdatetargetsInput
|
|
|
+ targets: ExerciseUpdatetargetsInput
|
|
|
+}
|
|
|
+
|
|
|
+input ExerciseUpdateManyWithoutBaseExerciseInput {
|
|
|
+ create: [ExerciseCreateWithoutBaseExerciseInput!]
|
|
|
+ connect: [ExerciseWhereUniqueInput!]
|
|
|
+ set: [ExerciseWhereUniqueInput!]
|
|
|
+ disconnect: [ExerciseWhereUniqueInput!]
|
|
|
+ delete: [ExerciseWhereUniqueInput!]
|
|
|
+ update: [ExerciseUpdateWithWhereUniqueWithoutBaseExerciseInput!]
|
|
|
+ updateMany: [ExerciseUpdateManyWithWhereNestedInput!]
|
|
|
+ deleteMany: [ExerciseScalarWhereInput!]
|
|
|
+ upsert: [ExerciseUpsertWithWhereUniqueWithoutBaseExerciseInput!]
|
|
|
}
|
|
|
|
|
|
-input ExcersiseUpdateManyWithWhereNestedInput {
|
|
|
- where: ExcersiseScalarWhereInput!
|
|
|
- data: ExcersiseUpdateManyDataInput!
|
|
|
+input ExerciseUpdateManyWithWhereNestedInput {
|
|
|
+ where: ExerciseScalarWhereInput!
|
|
|
+ data: ExerciseUpdateManyDataInput!
|
|
|
}
|
|
|
|
|
|
-input ExcersiseUpdatetargetsInput {
|
|
|
+input ExerciseUpdatetargetsInput {
|
|
|
set: [String!]
|
|
|
}
|
|
|
|
|
|
-input ExcersiseUpdateWithWhereUniqueNestedInput {
|
|
|
- where: ExcersiseWhereUniqueInput!
|
|
|
- data: ExcersiseUpdateDataInput!
|
|
|
+input ExerciseUpdateWithoutBaseExerciseDataInput {
|
|
|
+ name: String
|
|
|
+ description: String
|
|
|
+ video: String
|
|
|
+ targets: ExerciseUpdatetargetsInput
|
|
|
+}
|
|
|
+
|
|
|
+input ExerciseUpdateWithWhereUniqueNestedInput {
|
|
|
+ where: ExerciseWhereUniqueInput!
|
|
|
+ data: ExerciseUpdateDataInput!
|
|
|
+}
|
|
|
+
|
|
|
+input ExerciseUpdateWithWhereUniqueWithoutBaseExerciseInput {
|
|
|
+ where: ExerciseWhereUniqueInput!
|
|
|
+ data: ExerciseUpdateWithoutBaseExerciseDataInput!
|
|
|
+}
|
|
|
+
|
|
|
+input ExerciseUpsertWithWhereUniqueNestedInput {
|
|
|
+ where: ExerciseWhereUniqueInput!
|
|
|
+ update: ExerciseUpdateDataInput!
|
|
|
+ create: ExerciseCreateInput!
|
|
|
}
|
|
|
|
|
|
-input ExcersiseUpsertWithWhereUniqueNestedInput {
|
|
|
- where: ExcersiseWhereUniqueInput!
|
|
|
- update: ExcersiseUpdateDataInput!
|
|
|
- create: ExcersiseCreateInput!
|
|
|
+input ExerciseUpsertWithWhereUniqueWithoutBaseExerciseInput {
|
|
|
+ where: ExerciseWhereUniqueInput!
|
|
|
+ update: ExerciseUpdateWithoutBaseExerciseDataInput!
|
|
|
+ create: ExerciseCreateWithoutBaseExerciseInput!
|
|
|
}
|
|
|
|
|
|
-input ExcersiseWhereInput {
|
|
|
+input ExerciseWhereInput {
|
|
|
"""Logical AND on all given filters."""
|
|
|
- AND: [ExcersiseWhereInput!]
|
|
|
+ AND: [ExerciseWhereInput!]
|
|
|
|
|
|
"""Logical OR on all given filters."""
|
|
|
- OR: [ExcersiseWhereInput!]
|
|
|
+ OR: [ExerciseWhereInput!]
|
|
|
|
|
|
"""Logical NOT on all given filters combined by AND."""
|
|
|
- NOT: [ExcersiseWhereInput!]
|
|
|
+ NOT: [ExerciseWhereInput!]
|
|
|
id: ID
|
|
|
|
|
|
"""All values that are not equal to given value."""
|
|
@@ -1441,9 +1794,10 @@ input ExcersiseWhereInput {
|
|
|
|
|
|
"""All values not ending with the given string."""
|
|
|
video_not_ends_with: String
|
|
|
+ baseExercise: BaseExerciseWhereInput
|
|
|
}
|
|
|
|
|
|
-input ExcersiseWhereUniqueInput {
|
|
|
+input ExerciseWhereUniqueInput {
|
|
|
id: ID
|
|
|
}
|
|
|
|
|
@@ -1707,56 +2061,62 @@ scalar Long
|
|
|
|
|
|
type Mutation {
|
|
|
createTraining(data: TrainingCreateInput!): Training!
|
|
|
+ createBaseExercise(data: BaseExerciseCreateInput!): BaseExercise!
|
|
|
createComment(data: CommentCreateInput!): Comment!
|
|
|
createUser(data: UserCreateInput!): User!
|
|
|
+ createExercise(data: ExerciseCreateInput!): Exercise!
|
|
|
createTrainingType(data: TrainingTypeCreateInput!): TrainingType!
|
|
|
createTrack(data: TrackCreateInput!): Track!
|
|
|
- createExcersise(data: ExcersiseCreateInput!): Excersise!
|
|
|
createBlock(data: BlockCreateInput!): Block!
|
|
|
createFormat(data: FormatCreateInput!): Format!
|
|
|
createRating(data: RatingCreateInput!): Rating!
|
|
|
updateTraining(data: TrainingUpdateInput!, where: TrainingWhereUniqueInput!): Training
|
|
|
+ updateBaseExercise(data: BaseExerciseUpdateInput!, where: BaseExerciseWhereUniqueInput!): BaseExercise
|
|
|
updateComment(data: CommentUpdateInput!, where: CommentWhereUniqueInput!): Comment
|
|
|
updateUser(data: UserUpdateInput!, where: UserWhereUniqueInput!): User
|
|
|
+ updateExercise(data: ExerciseUpdateInput!, where: ExerciseWhereUniqueInput!): Exercise
|
|
|
updateTrainingType(data: TrainingTypeUpdateInput!, where: TrainingTypeWhereUniqueInput!): TrainingType
|
|
|
updateTrack(data: TrackUpdateInput!, where: TrackWhereUniqueInput!): Track
|
|
|
- updateExcersise(data: ExcersiseUpdateInput!, where: ExcersiseWhereUniqueInput!): Excersise
|
|
|
updateBlock(data: BlockUpdateInput!, where: BlockWhereUniqueInput!): Block
|
|
|
updateFormat(data: FormatUpdateInput!, where: FormatWhereUniqueInput!): Format
|
|
|
updateRating(data: RatingUpdateInput!, where: RatingWhereUniqueInput!): Rating
|
|
|
deleteTraining(where: TrainingWhereUniqueInput!): Training
|
|
|
+ deleteBaseExercise(where: BaseExerciseWhereUniqueInput!): BaseExercise
|
|
|
deleteComment(where: CommentWhereUniqueInput!): Comment
|
|
|
deleteUser(where: UserWhereUniqueInput!): User
|
|
|
+ deleteExercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
|
deleteTrainingType(where: TrainingTypeWhereUniqueInput!): TrainingType
|
|
|
deleteTrack(where: TrackWhereUniqueInput!): Track
|
|
|
- deleteExcersise(where: ExcersiseWhereUniqueInput!): Excersise
|
|
|
deleteBlock(where: BlockWhereUniqueInput!): Block
|
|
|
deleteFormat(where: FormatWhereUniqueInput!): Format
|
|
|
deleteRating(where: RatingWhereUniqueInput!): Rating
|
|
|
upsertTraining(where: TrainingWhereUniqueInput!, create: TrainingCreateInput!, update: TrainingUpdateInput!): Training!
|
|
|
+ upsertBaseExercise(where: BaseExerciseWhereUniqueInput!, create: BaseExerciseCreateInput!, update: BaseExerciseUpdateInput!): BaseExercise!
|
|
|
upsertComment(where: CommentWhereUniqueInput!, create: CommentCreateInput!, update: CommentUpdateInput!): Comment!
|
|
|
upsertUser(where: UserWhereUniqueInput!, create: UserCreateInput!, update: UserUpdateInput!): User!
|
|
|
+ upsertExercise(where: ExerciseWhereUniqueInput!, create: ExerciseCreateInput!, update: ExerciseUpdateInput!): Exercise!
|
|
|
upsertTrainingType(where: TrainingTypeWhereUniqueInput!, create: TrainingTypeCreateInput!, update: TrainingTypeUpdateInput!): TrainingType!
|
|
|
upsertTrack(where: TrackWhereUniqueInput!, create: TrackCreateInput!, update: TrackUpdateInput!): Track!
|
|
|
- upsertExcersise(where: ExcersiseWhereUniqueInput!, create: ExcersiseCreateInput!, update: ExcersiseUpdateInput!): Excersise!
|
|
|
upsertBlock(where: BlockWhereUniqueInput!, create: BlockCreateInput!, update: BlockUpdateInput!): Block!
|
|
|
upsertFormat(where: FormatWhereUniqueInput!, create: FormatCreateInput!, update: FormatUpdateInput!): Format!
|
|
|
upsertRating(where: RatingWhereUniqueInput!, create: RatingCreateInput!, update: RatingUpdateInput!): Rating!
|
|
|
updateManyTrainings(data: TrainingUpdateManyMutationInput!, where: TrainingWhereInput): BatchPayload!
|
|
|
+ updateManyBaseExercises(data: BaseExerciseUpdateManyMutationInput!, where: BaseExerciseWhereInput): BatchPayload!
|
|
|
updateManyComments(data: CommentUpdateManyMutationInput!, where: CommentWhereInput): BatchPayload!
|
|
|
updateManyUsers(data: UserUpdateManyMutationInput!, where: UserWhereInput): BatchPayload!
|
|
|
+ updateManyExercises(data: ExerciseUpdateManyMutationInput!, where: ExerciseWhereInput): BatchPayload!
|
|
|
updateManyTrainingTypes(data: TrainingTypeUpdateManyMutationInput!, where: TrainingTypeWhereInput): BatchPayload!
|
|
|
updateManyTracks(data: TrackUpdateManyMutationInput!, where: TrackWhereInput): BatchPayload!
|
|
|
- updateManyExcersises(data: ExcersiseUpdateManyMutationInput!, where: ExcersiseWhereInput): BatchPayload!
|
|
|
updateManyBlocks(data: BlockUpdateManyMutationInput!, where: BlockWhereInput): BatchPayload!
|
|
|
updateManyFormats(data: FormatUpdateManyMutationInput!, where: FormatWhereInput): BatchPayload!
|
|
|
updateManyRatings(data: RatingUpdateManyMutationInput!, where: RatingWhereInput): BatchPayload!
|
|
|
deleteManyTrainings(where: TrainingWhereInput): BatchPayload!
|
|
|
+ deleteManyBaseExercises(where: BaseExerciseWhereInput): BatchPayload!
|
|
|
deleteManyComments(where: CommentWhereInput): BatchPayload!
|
|
|
deleteManyUsers(where: UserWhereInput): BatchPayload!
|
|
|
+ deleteManyExercises(where: ExerciseWhereInput): BatchPayload!
|
|
|
deleteManyTrainingTypes(where: TrainingTypeWhereInput): BatchPayload!
|
|
|
deleteManyTracks(where: TrackWhereInput): BatchPayload!
|
|
|
- deleteManyExcersises(where: ExcersiseWhereInput): BatchPayload!
|
|
|
deleteManyBlocks(where: BlockWhereInput): BatchPayload!
|
|
|
deleteManyFormats(where: FormatWhereInput): BatchPayload!
|
|
|
deleteManyRatings(where: RatingWhereInput): BatchPayload!
|
|
@@ -1797,29 +2157,32 @@ enum Permission {
|
|
|
|
|
|
type Query {
|
|
|
trainings(where: TrainingWhereInput, orderBy: TrainingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Training]!
|
|
|
+ baseExercises(where: BaseExerciseWhereInput, orderBy: BaseExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [BaseExercise]!
|
|
|
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]!
|
|
|
+ exercises(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Exercise]!
|
|
|
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]!
|
|
|
- excersises(where: ExcersiseWhereInput, orderBy: ExcersiseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Excersise]!
|
|
|
blocks(where: BlockWhereInput, orderBy: BlockOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Block]!
|
|
|
formats(where: FormatWhereInput, orderBy: FormatOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Format]!
|
|
|
ratings(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Rating]!
|
|
|
training(where: TrainingWhereUniqueInput!): Training
|
|
|
+ baseExercise(where: BaseExerciseWhereUniqueInput!): BaseExercise
|
|
|
comment(where: CommentWhereUniqueInput!): Comment
|
|
|
user(where: UserWhereUniqueInput!): User
|
|
|
+ exercise(where: ExerciseWhereUniqueInput!): Exercise
|
|
|
trainingType(where: TrainingTypeWhereUniqueInput!): TrainingType
|
|
|
track(where: TrackWhereUniqueInput!): Track
|
|
|
- excersise(where: ExcersiseWhereUniqueInput!): Excersise
|
|
|
block(where: BlockWhereUniqueInput!): Block
|
|
|
format(where: FormatWhereUniqueInput!): Format
|
|
|
rating(where: RatingWhereUniqueInput!): Rating
|
|
|
trainingsConnection(where: TrainingWhereInput, orderBy: TrainingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): TrainingConnection!
|
|
|
+ baseExercisesConnection(where: BaseExerciseWhereInput, orderBy: BaseExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): BaseExerciseConnection!
|
|
|
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!
|
|
|
+ exercisesConnection(where: ExerciseWhereInput, orderBy: ExerciseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExerciseConnection!
|
|
|
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!
|
|
|
- excersisesConnection(where: ExcersiseWhereInput, orderBy: ExcersiseOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): ExcersiseConnection!
|
|
|
blocksConnection(where: BlockWhereInput, orderBy: BlockOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): BlockConnection!
|
|
|
formatsConnection(where: FormatWhereInput, orderBy: FormatOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): FormatConnection!
|
|
|
ratingsConnection(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): RatingConnection!
|
|
@@ -2291,11 +2654,12 @@ input RatingWhereUniqueInput {
|
|
|
|
|
|
type Subscription {
|
|
|
training(where: TrainingSubscriptionWhereInput): TrainingSubscriptionPayload
|
|
|
+ baseExercise(where: BaseExerciseSubscriptionWhereInput): BaseExerciseSubscriptionPayload
|
|
|
comment(where: CommentSubscriptionWhereInput): CommentSubscriptionPayload
|
|
|
user(where: UserSubscriptionWhereInput): UserSubscriptionPayload
|
|
|
+ exercise(where: ExerciseSubscriptionWhereInput): ExerciseSubscriptionPayload
|
|
|
trainingType(where: TrainingTypeSubscriptionWhereInput): TrainingTypeSubscriptionPayload
|
|
|
track(where: TrackSubscriptionWhereInput): TrackSubscriptionPayload
|
|
|
- excersise(where: ExcersiseSubscriptionWhereInput): ExcersiseSubscriptionPayload
|
|
|
block(where: BlockSubscriptionWhereInput): BlockSubscriptionPayload
|
|
|
format(where: FormatSubscriptionWhereInput): FormatSubscriptionPayload
|
|
|
rating(where: RatingSubscriptionWhereInput): RatingSubscriptionPayload
|
|
@@ -2852,7 +3216,9 @@ type Training implements Node {
|
|
|
content(where: BlockWhereInput, orderBy: BlockOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Block!]
|
|
|
createdAt: DateTime!
|
|
|
trainingDate: DateTime!
|
|
|
- participants(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!]
|
|
|
+ location: String!
|
|
|
+ registration(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User!]
|
|
|
+ attendance: Int!
|
|
|
ratings(where: RatingWhereInput, orderBy: RatingOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Rating!]
|
|
|
published: Boolean!
|
|
|
}
|
|
@@ -2871,10 +3237,12 @@ input TrainingCreateInput {
|
|
|
id: ID
|
|
|
title: String!
|
|
|
trainingDate: DateTime!
|
|
|
+ location: String!
|
|
|
+ attendance: Int!
|
|
|
published: Boolean!
|
|
|
type: TrainingTypeCreateOneInput!
|
|
|
content: BlockCreateManyInput
|
|
|
- participants: UserCreateManyInput
|
|
|
+ registration: UserCreateManyInput
|
|
|
ratings: RatingCreateManyInput
|
|
|
}
|
|
|
|
|
@@ -2896,6 +3264,10 @@ enum TrainingOrderByInput {
|
|
|
createdAt_DESC
|
|
|
trainingDate_ASC
|
|
|
trainingDate_DESC
|
|
|
+ location_ASC
|
|
|
+ location_DESC
|
|
|
+ attendance_ASC
|
|
|
+ attendance_DESC
|
|
|
published_ASC
|
|
|
published_DESC
|
|
|
}
|
|
@@ -2905,6 +3277,8 @@ type TrainingPreviousValues {
|
|
|
title: String!
|
|
|
createdAt: DateTime!
|
|
|
trainingDate: DateTime!
|
|
|
+ location: String!
|
|
|
+ attendance: Int!
|
|
|
published: Boolean!
|
|
|
}
|
|
|
|
|
@@ -3198,16 +3572,20 @@ input TrainingTypeWhereUniqueInput {
|
|
|
input TrainingUpdateInput {
|
|
|
title: String
|
|
|
trainingDate: DateTime
|
|
|
+ location: String
|
|
|
+ attendance: Int
|
|
|
published: Boolean
|
|
|
type: TrainingTypeUpdateOneRequiredInput
|
|
|
content: BlockUpdateManyInput
|
|
|
- participants: UserUpdateManyInput
|
|
|
+ registration: UserUpdateManyInput
|
|
|
ratings: RatingUpdateManyInput
|
|
|
}
|
|
|
|
|
|
input TrainingUpdateManyMutationInput {
|
|
|
title: String
|
|
|
trainingDate: DateTime
|
|
|
+ location: String
|
|
|
+ attendance: Int
|
|
|
published: Boolean
|
|
|
}
|
|
|
|
|
@@ -3344,6 +3722,68 @@ input TrainingWhereInput {
|
|
|
|
|
|
"""All values greater than or equal the given value."""
|
|
|
trainingDate_gte: DateTime
|
|
|
+ location: String
|
|
|
+
|
|
|
+ """All values that are not equal to given value."""
|
|
|
+ location_not: String
|
|
|
+
|
|
|
+ """All values that are contained in given list."""
|
|
|
+ location_in: [String!]
|
|
|
+
|
|
|
+ """All values that are not contained in given list."""
|
|
|
+ location_not_in: [String!]
|
|
|
+
|
|
|
+ """All values less than the given value."""
|
|
|
+ location_lt: String
|
|
|
+
|
|
|
+ """All values less than or equal the given value."""
|
|
|
+ location_lte: String
|
|
|
+
|
|
|
+ """All values greater than the given value."""
|
|
|
+ location_gt: String
|
|
|
+
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
+ location_gte: String
|
|
|
+
|
|
|
+ """All values containing the given string."""
|
|
|
+ location_contains: String
|
|
|
+
|
|
|
+ """All values not containing the given string."""
|
|
|
+ location_not_contains: String
|
|
|
+
|
|
|
+ """All values starting with the given string."""
|
|
|
+ location_starts_with: String
|
|
|
+
|
|
|
+ """All values not starting with the given string."""
|
|
|
+ location_not_starts_with: String
|
|
|
+
|
|
|
+ """All values ending with the given string."""
|
|
|
+ location_ends_with: String
|
|
|
+
|
|
|
+ """All values not ending with the given string."""
|
|
|
+ location_not_ends_with: String
|
|
|
+ attendance: Int
|
|
|
+
|
|
|
+ """All values that are not equal to given value."""
|
|
|
+ attendance_not: Int
|
|
|
+
|
|
|
+ """All values that are contained in given list."""
|
|
|
+ attendance_in: [Int!]
|
|
|
+
|
|
|
+ """All values that are not contained in given list."""
|
|
|
+ attendance_not_in: [Int!]
|
|
|
+
|
|
|
+ """All values less than the given value."""
|
|
|
+ attendance_lt: Int
|
|
|
+
|
|
|
+ """All values less than or equal the given value."""
|
|
|
+ attendance_lte: Int
|
|
|
+
|
|
|
+ """All values greater than the given value."""
|
|
|
+ attendance_gt: Int
|
|
|
+
|
|
|
+ """All values greater than or equal the given value."""
|
|
|
+ attendance_gte: Int
|
|
|
published: Boolean
|
|
|
|
|
|
"""All values that are not equal to given value."""
|
|
@@ -3352,9 +3792,9 @@ input TrainingWhereInput {
|
|
|
content_every: BlockWhereInput
|
|
|
content_some: BlockWhereInput
|
|
|
content_none: BlockWhereInput
|
|
|
- participants_every: UserWhereInput
|
|
|
- participants_some: UserWhereInput
|
|
|
- participants_none: UserWhereInput
|
|
|
+ registration_every: UserWhereInput
|
|
|
+ registration_some: UserWhereInput
|
|
|
+ registration_none: UserWhereInput
|
|
|
ratings_every: RatingWhereInput
|
|
|
ratings_some: RatingWhereInput
|
|
|
ratings_none: RatingWhereInput
|