summaryrefslogtreecommitdiffstats
path: root/backend/src/generated
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-02-02 15:23:20 -0500
committerWes Bos <wesbos@gmail.com>2018-02-02 15:23:20 -0500
commiteabff7cd396d1f37ceb929e666f082ce57f07919 (patch)
tree6fbd487688ee9e53bada734288994c35b732150e /backend/src/generated
parentcd0b07b3adb36fb5ec098f9e511ab45d774fee7b (diff)
updateS
Diffstat (limited to 'backend/src/generated')
-rw-r--r--backend/src/generated/prisma.graphql22
1 files changed, 22 insertions, 0 deletions
diff --git a/backend/src/generated/prisma.graphql b/backend/src/generated/prisma.graphql
index 50aaa97..e59a1c9 100644
--- a/backend/src/generated/prisma.graphql
+++ b/backend/src/generated/prisma.graphql
@@ -30,6 +30,7 @@ type User implements Node {
posts(where: PostWhereInput, orderBy: PostOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Post!]
website: String
age: Int
+ dummy: String
}
@@ -420,6 +421,7 @@ input UserCreateInput {
name: String!
website: String
age: Int
+ dummy: String
posts: PostCreateManyWithoutAuthorInput
}
@@ -434,6 +436,7 @@ input UserCreateWithoutPostsInput {
name: String!
website: String
age: Int
+ dummy: String
}
type UserEdge {
@@ -454,6 +457,8 @@ enum UserOrderByInput {
website_DESC
age_ASC
age_DESC
+ dummy_ASC
+ dummy_DESC
updatedAt_ASC
updatedAt_DESC
createdAt_ASC
@@ -467,6 +472,7 @@ type UserPreviousValues {
name: String!
website: String
age: Int
+ dummy: String
}
type UserSubscriptionPayload {
@@ -492,6 +498,7 @@ input UserUpdateInput {
name: String
website: String
age: Int
+ dummy: String
posts: PostUpdateManyWithoutAuthorInput
}
@@ -510,6 +517,7 @@ input UserUpdateWithoutPostsDataInput {
name: String
website: String
age: Int
+ dummy: String
}
input UserUpdateWithoutPostsInput {
@@ -604,6 +612,20 @@ input UserWhereInput {
age_lte: Int
age_gt: Int
age_gte: Int
+ dummy: String
+ dummy_not: String
+ dummy_in: [String!]
+ dummy_not_in: [String!]
+ dummy_lt: String
+ dummy_lte: String
+ dummy_gt: String
+ dummy_gte: String
+ dummy_contains: String
+ dummy_not_contains: String
+ dummy_starts_with: String
+ dummy_not_starts_with: String
+ dummy_ends_with: String
+ dummy_not_ends_with: String
posts_every: PostWhereInput
posts_some: PostWhereInput
posts_none: PostWhereInput