Skip to content

Instantly share code, notes, and snippets.

@gc-codesnippets
Created March 29, 2018 08:33
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gc-codesnippets/3f4178ad93c51d03195c92ce119d444c to your computer and use it in GitHub Desktop.
Save gc-codesnippets/3f4178ad93c51d03195c92ce119d444c to your computer and use it in GitHub Desktop.
# THIS FILE HAS BEEN AUTO-GENERATED BY "PRISMA DEPLOY"
# DO NOT EDIT THIS FILE DIRECTLY
#
# Model Types
#
type User implements Node {
id: ID!
name: String!
}
#
# Other Types
#
type AggregateUser {
count: Int!
}
type BatchPayload {
"""
The number of nodes that have been affected by the Batch operation.
"""
count: Long!
}
"""
The `Long` scalar type represents non-fractional signed whole numeric values.
Long can represent values between -(2^63) and 2^63 - 1.
"""
scalar Long
type Mutation {
createUser(data: UserCreateInput!): User!
updateUser(data: UserUpdateInput!, where: UserWhereUniqueInput!): User
deleteUser(where: UserWhereUniqueInput!): User
upsertUser(where: UserWhereUniqueInput!, create: UserCreateInput!, update: UserUpdateInput!): User!
updateManyUsers(data: UserUpdateInput!, where: UserWhereInput!): BatchPayload!
deleteManyUsers(where: UserWhereInput!): BatchPayload!
}
enum MutationType {
CREATED
UPDATED
DELETED
}
"""
An object with an ID
"""
interface Node {
"""
The id of the object.
"""
id: ID!
}
"""
Information about pagination in a connection.
"""
type PageInfo {
"""
When paginating forwards, are there more items?
"""
hasNextPage: Boolean!
"""
When paginating backwards, are there more items?
"""
hasPreviousPage: Boolean!
"""
When paginating backwards, the cursor to continue.
"""
startCursor: String
"""
When paginating forwards, the cursor to continue.
"""
endCursor: String
}
type Query {
users(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [User]!
user(where: UserWhereUniqueInput!): User
usersConnection(where: UserWhereInput, orderBy: UserOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): UserConnection!
"""
Fetches an object given its ID
"""
node("""
The ID of an object
"""
id: ID!): Node
}
type Subscription {
user(where: UserSubscriptionWhereInput): UserSubscriptionPayload
}
"""
A connection to a list of items.
"""
type UserConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [UserEdge]!
aggregate: AggregateUser!
}
input UserCreateInput {
name: String!
}
"""
An edge in a connection.
"""
type UserEdge {
"""
The item at the end of the edge.
"""
node: User!
"""
A cursor for use in pagination.
"""
cursor: String!
}
enum UserOrderByInput {
id_ASC
id_DESC
name_ASC
name_DESC
updatedAt_ASC
updatedAt_DESC
createdAt_ASC
createdAt_DESC
}
type UserPreviousValues {
id: ID!
name: String!
}
type UserSubscriptionPayload {
mutation: MutationType!
node: User
updatedFields: [String!]
previousValues: UserPreviousValues
}
input UserSubscriptionWhereInput {
"""
Logical AND on all given filters.
"""
AND: [UserSubscriptionWhereInput!]
"""
Logical OR on all given filters.
"""
OR: [UserSubscriptionWhereInput!]
"""
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: UserWhereInput
}
input UserUpdateInput {
name: String
}
input UserWhereInput {
"""
Logical AND on all given filters.
"""
AND: [UserWhereInput!]
"""
Logical OR on all given filters.
"""
OR: [UserWhereInput!]
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
}
input UserWhereUniqueInput {
id: ID
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment